.calendar-container {
    width: 100%;
    max-width: 43%;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(100, 100, 100, 30%);
    background: linear-gradient(135deg, #f5f7fa, #e2e8f0);
}

.form-container {
    width: 100%;
    max-width: 43%;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-top: 20px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f5f7fa, #e2e8f0);
}

/*.timing-btn.disabled {*/
/*    background-color: #ccc;*/
/*    cursor: not-allowed;*/
/*    pointer-events: none;*/
/*    opacity: 0.6;*/
/*}*/

/*.timing-btn {*/
/*    padding: 10px 15px;*/
/*    margin: 5px;*/
/*    border: 1px solid #ccc;*/
/*    background-color: #f9f9f9;*/
/*    cursor: pointer;*/
/*    border-radius: 5px;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*.timing-btn:disabled,*/
/*.timing-btn.disabled {*/
/*    background-color: #d3d3d3;*/
/*    cursor: not-allowed;*/
/*}*/

#payment-container {
    width: 100%;
    max-width: 43%;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-top: 20px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f5f7fa, #e2e8f0);
}

.d-none {
    display: none;
}

/* #back-button {
    margin-right: 10px;
} */

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2c5282;
    color: #fff;
    border-bottom: 2px solid #2c5282;
}

#prev-month, #next-month, #today {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    color: #edf2f7;
    transition: color 0.3s;
}

#prev-month:hover, #next-month:hover, #today:hover {
    color: #cbd5e0;
}

#current-month-year {
    flex-grow: 1;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    padding: 5px;
    /* background-color: #edf2f7; */
}

.day-of-week {
    text-align: center;
    font-weight: bold;
    padding: 12px;
    color: #2d3748;
}

.day-cell {
    text-align: center;
    padding: 16px;
    cursor: pointer;
    color: #2d3748;
    transition: background-color 0.3s;
}

.current-date {
    background-color: transparent;
    color: #fff;
    border-radius: 12px;
    border: 2px solid #2c5282;
}

.disabled {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}   

/* Style for the actual current date only */
.day-cell.current-date {
    background-color: #2c5282;
    color: #fff;
    border-radius: 12px;
    border: 2px solid #2c5282;
}

.selected {
    background-color: transparent;
    color: #2c5282;
    border: 2px solid #2c5282;
    border-radius: 12px;
}

.timings-container {
    margin-top: 0px;
    padding: 0px 30px 20px 30px;
    border-top: 1px solid lightgrey;
}

.timings-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.timing-btn {
    padding: 10px 13px;
}

.btn-primary {
    background-color: #2c5282;
    border-radius: 10px;
    color: #fff;
    border: none;
    transition: .5s;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-outline-primary {
    border: 1px solid #2c5282;
    border-radius: 10px;
    background: transparent;
    color: #2c5282;
}

#back-button {
    border: 1px solid #2c5282;
    border-radius: 10px;
    background: transparent;
    color: #2c5282;
}

h4 {
    margin: 0;
    font-weight: bold;
}

.btn-outline-primary:hover {
    background-color: #2c5282;
    border: 1px solid #2c5282;
    border-radius: 10px;
}

#back-button:hover {
    background-color: #2c5282 !important;
    border: 1px solid #2c5282 !important;
    border-radius: 10px;
    color: #fff;
}

#card-btn, #upi-btn, #cash-btn {
    border: 1px solid #2c5282;
    /* color: #2c5282; */
    border-radius: 10px;
    transition: .5s;
}

#card-btn:hover {
    background-color: #2c5282 ;
    border: 1px solid #2c5282;
    color: #fff;
}

#upi-btn:hover {
    background-color: #2c5282 ;
    border: 1px solid #2c5282;
    color: #fff;
}

#cash-btn:hover {
    background-color: #2c5282 ;
    border: 1px solid #2c5282;
    color: #fff;
}

.btn-outline-secondary {
    --bs-btn-color: #2c5282;
}

@media (max-width: 600px) {
    .calendar-container {
        max-width: 100%;
    }

    .calendar-body {
        grid-template-columns: repeat(7, 1fr);
    }
}