/* Container for all activities */
.activities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Individual activity card styling */
.activity-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    /* padding: 20px; */
    margin-bottom: 20px;
    /* width: 400px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    transition: box-shadow 0.3s ease-in-out;
    width: 100%;
    display: flex;
    gap: 20px;
    height: 220px;
    max-height: 220px;
}

.activity-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image slider styling */
.slider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Price and location styling */
.activity-card p {
    
    font-size: 16px;
    color: #333;
}
p{
    margin: 0px !important;
}
.title-center-panel{
    flex: 50%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.dialog-open {
    overflow: hidden; /* Prevent scrolling */
}
.activity-description {
    font-size: 14px;
    color: #666;
    /* margin-bottom: 10px; */
}
a{
    text-decoration: none;
    outline: none;
}
.full-description{
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: #2e93ff;
    font-size: 15px;
    cursor: pointer;
}
.category-title{
    border: 1px solid #b1b1b1;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 12px;
    font-size: 14px !important;
}
.view-details-button{
    text-decoration: none;
    outline: none;
    background: #2E7FFF;
    color: white;
    /* padding: 5px 10px 5px 10px; */
    border-radius: 5px;
    font-size: 14px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}
/* Show more/less link */
.show-more {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

.show-more:hover {
    color: #0056b3;
}

/* Book now button styling */
.book-now-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.book-now-button:hover {
    background-color: #218838;
}

/* Slider dots */
.slick-dots li button:before {
    color: #007bff;
}

.slick-prev:before,
.slick-next:before {
    color: #007bff;
}
#dialog-select-options {
    
}
.ui-dialog-titlebar{
    background-color: white !important;
    border: 1px solid #f1f1f1 !important;
}
.ui-dialog-titlebar-close{
    border: none;
    background-color: white;
}
select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

select:focus {
    border-color: #007bff;
}

.ui-dialog-content {
    overflow-y: auto;
    max-height: 100%;
}


/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

/* Payment Form Styles */
#payment-form {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    margin: 0 auto;
}

/* Card Element Styles */
#card-element {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Card Element Focus and Error Styles */
#card-element:focus {
    border-color: #007bff;
    outline: none;
}

.card-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
}

/* Button Styles */
#proceed-to-pay {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#proceed-to-pay:hover {
    background-color: #0056b3;
}

/* Payment Message Styles */
#payment-message {
    margin-top: 15px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 480px) {
    #payment-form {
        padding: 20px;
    }

    #proceed-to-pay {
        width: 100%;
    }
}
/* Form Container Styles */
.form-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Title Styles */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 15px;
}

/* Label Styles */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Input Focus Styles */
input:focus,
select:focus {
    border-color: #007bff;
    outline: none;
}

/* Button Styles */
button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover Styles */
button:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
}