/* Custom Datepicker */
.sb-date-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.sb-date {
    cursor: pointer;
    background-color: #fff !important;
    padding-right: 40px !important;
}
.sb-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 16px;
}
.sb-date-calendar {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 100;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 20px;
    min-width: 320px;
    user-select: none;
}
.sb-date-calendar.active {
    display: block;
}
.sb-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.sb-cal-header .sb-cal-title {
    font-weight: 700;
    font-size: 16px;
    color: #203046;
}
.sb-cal-header button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #999;
    padding: 4px 8px;
    border-radius: 4px;
}
.sb-cal-header button:hover {
    color: #333;
}
.sb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.sb-cal-dow {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding: 6px 0;
}
.sb-cal-day {
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
    transition: background 0.15s;
}
.sb-cal-day:hover:not(.sb-cal-today):not(.sb-cal-empty):not(.sb-cal-disabled):not(.sb-cal-selected) {
    background-color: #f0f0f0;
}
.sb-cal-day.sb-cal-weekend {
    background-color: #eef0f7;
    color: #555;
}
.sb-cal-day.sb-cal-weekend:hover:not(.sb-cal-today):not(.sb-cal-disabled):not(.sb-cal-selected) {
    background-color: #dfe2ef;
}
/* Bugungi kun — rasmdagidek sal xira (faded) */
.sb-cal-day.sb-cal-today {
    background-color: #f4f5f8;
    color: #aeb4c2;
    font-weight: 400;
    border: none;
}
.sb-cal-day.sb-cal-selected {
    background-color: #F0951A;
    color: #ffffff;
    font-weight: 700;
}
/* Tanlangan kun, agar bugun bo'lsa ham, to'q sariq bo'lib qoladi */
.sb-cal-day.sb-cal-today.sb-cal-selected {
    background-color: #F0951A;
    color: #ffffff;
    font-weight: 700;
}
.sb-cal-day.sb-cal-empty {
    cursor: default;
}
.sb-cal-day.sb-cal-disabled {
    color: #ccc;
    cursor: not-allowed;
}

#submit-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
