
/*input {
    padding: 10px 14px;
    width: 150px;
    margin-right: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

    input:disabled {
        cursor: no-drop;
    }*/

.calendar-wrapper {
    width: 550px;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: absolute;
    display: none;
    z-index: 9999;
}

.calendar {
    display: flex;
    gap: 15px;
}

.month {
    width: 50%;
}

    .month h3 {
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #2f2f2f;
        margin: 0px 0px 16px 0px;
    }

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
    font-size: 13px;
    color: #444444;
    font-weight: 600;
}

    .weekdays span {
        text-align: center;
    }

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.day {
    border-radius: 5px;
    height: 34px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #373737;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    position: relative;
    border: 1px solid #d0dae3;
    background: #dbf1ff;
    line-height:14px;
}

    .day span {
        font-weight: normal;
        font-size: 11px;
        color: #3d3e3e;
    }

    .day.disabled {
        opacity: .5;
        cursor: not-allowed;
        pointer-events: none;
    }

    .day.start, .day.end {
        background: #33aaff;
        color: #fff;
        border-color: #33aaff;
    }

    .day.middle {
        background: #afd7f0;
        color: #fff;
        border-color: #afd7f0;
    }

    .day:hover {
        background: #0094da;
        color: #fff;
    }

        .day:hover span {
            font-size: 12px;
            color: #fff;
        }

    .day.start span, .day.end span {
        color: #fff;
    }

.oneway-btn {
    margin-top: 12px;
    display: block;
    padding: 8px 12px;
    text-align: center;
    background: #0094da;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}

#calendarBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prevc {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 15px;
    color: #a1a1a1;
    cursor: pointer;
}

.nextc {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 15px;
    color: #a1a1a1;
    cursor: pointer;
}


/*=============================resoponsive dsign address==============================*/
@media only screen and (min-width:320px) and (max-width: 576px) {

    .calendar-wrapper {
        width: 257px;
        background: #ffffff;
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
        position: absolute;
        display: none;
        z-index: 9999;
    }
    .month {
        width: 100%;
    }
    .calendar .month.right {
        display: none;
    }
    .calendar {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }
}