.container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px);
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #bb7200;
}

.card-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    flex-grow: 1;
    text-align: justify !important;
}

.card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .card-link:hover {
        background-color: #0056b3;
    }



.btn-confirm {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-confirm:hover {
        background-color: #0056b3;
    }

.calendar-controls {
    margin-bottom: 20px;
}

    .calendar-controls button {
        padding: 10px 20px;
        margin: 0 5px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
.reservation-section a {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #007bff;
    color: #fff!important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

        .calendar-controls button:hover {
            background-color: #0056b3;
        }

.calendar {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #FFFF;
}

.calendarBody {
    background-color: #FFFF;
}

.calendar th, .calendar td {
    padding: 10px;
    border: 1px solid #ddd;
}

.calendar th {
    background-color: #f8f9fa;
}

.calendar td {
    cursor: pointer;
}

    .calendar td:hover {
        background-color: #f1f1f1;
    }

.time-section, .reservation-section {
    margin-bottom: 20px;
}

.time-slots, .reservation-types {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .time-slots button, .reservation-types button {
        padding: 10px 20px;
        background-color: #c6baaa;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .time-slots button:hover, .reservation-types button:hover {
            background-color: #a59b8d;
        }

.breadcrumbs-custom {
    padding: 180px 0;
}

.available {
    background-color: #808080; /* Grey background for available dates */
    color: white;
    cursor: pointer;
}

    /*.available:hover {
        background-color: #308233 !important;*/ /* Darker green on hover */
    /*}*/
.selected {
    background-color: #4CAF50 !important; 
    color: white !important;
}

[dir="rtl"]
.activity-details {
    direction: rtl;
    text-align: right;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}
[dir="ltr"]
.activity-details {
    direction: ltr;
    text-align: left;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

    .activity-details p {

        margin: 10px 0;
        font-size: 23px;
        color: #fff;
    }

    .activity-details strong {

        color: #f0f0f0;
        font-weight: bold;
    }
.participant-count input {
    width: 200px;
    padding: 10px;
    font-size: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.participant-count {
    margin-bottom: 20px;
}