.app-time {
    /* border: 1px solid #ccc; */
    padding: 10px;
    border-radius: 8px;
}

.app-check {
    display: flex;
    flex-wrap: wrap;
}

.app-border {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.app-border:hover {
    background-color: #f0f0f0;
}

.app-border.selected {
    background-color: #f99201;
    color: #fff;
}

.app-border.booked {
    background-color: #f8d7da;
}

.time_header_style {
    font-size: 16px;
    font-weight: bold;
}

.option-input {
    display: none;
}

@media (max-width: 768px) {
    .mobile-resp {
        margin-top: 35px;
    }
    .option-input {
        margin-left: 30px;
        left: 40px;
    }
}
.past-date,
.past-date .fc-daygrid-day-top,
.past-date .fc-daygrid-day-number {
    color: #999 !important;
    pointer-events: none;
    cursor: not-allowed;
}

.custom-drop-down {
    position: relative;
    display: inline-block;
    border-radius: 5px;
}

.custom-drop-down-btn {
    background-color: #f99201;
    color: white;
    width: 180px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-drop-down-btn:hover {
    background-color: #e68300;
}

.custom-drop-down-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f99201;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 1;
}

.custom-drop-down-content li {
    padding: 8px;
    color: white;
    cursor: pointer;
}

.custom-drop-down-content li:hover {
    background-color: #e68300;
}

.custom-drop-down-content.show {
    display: block;
}
.custom-select {
    background-color: #f99201;
    color: white;
    width: 130px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    appearance: none;
}
.custom-drop-down select {
    outline: none;
}
.title-for-booking {
    margin-right: 10px;
    font-weight: bold;
    font-size: larger;
}
/* Responsive styles */
@media (max-width: 768px) {
    .custom-drop-down {
        margin-top: 10px;
    }

    .title-for-booking {
        font-size: 14px !important;
    }

    .mobile-margin {
        margin-top: 5px !important;
    }
}
