﻿









.calendar-table {
    display: table !important;
    width: 100%;
    border-collapse: collapse;
}

    .calendar-table thead {
        display: table-header-group !important;
    }

    .calendar-table tbody {
        display: table-row-group !important;
    }

    .calendar-table tr {
        display: table-row !important;
    }

    .calendar-table th,
    .calendar-table td {
        display: table-cell !important;
    }

.past-date {
    color: #ccc;
    background-color: #f5f5f5;
    pointer-events: none;
    cursor: not-allowed;
}
.date-range-group .rz-datepicker {
    width: 100%;
}

.date-left input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.date-right input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.date-separator {
    background: #fff;
    border-left: 0;
    border-right: 0;
    font-weight: 600;
    color: #6c757d;
}

.date-range-group input {
    height: 38px;
}

.calendar-header-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.month-select, .year-select {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 6px;
}

.calendar-table td {
    padding: 6px;
    text-align: center;
    cursor: pointer;
}

/* TODAY */
.today {
    background: #0d6efd;
    color: white;
    border-radius: 6px;
}

/* START / END */
.start-end {
    background: #0d6efd;
    color: white;
    border-radius: 50%;
}

/* RANGE */
.in-range {
    background: #cfe2ff;
    color: #0d6efd;
    border-radius: 50%;
}

.input-wrapper {
    position: relative;
    width: 250px;
}

.calendar-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #212529; /* black */
    pointer-events: none;
    font-size: 16px;
}

/* hover + focus like Radzen */
.date-input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
}

.calendar-popup {
    position: absolute;
    left: auto;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    min-width: 320px;
}


.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

    .calendar-table th {
        font-size: 11px;
        color: #4A5050;
        padding: 10px 11px;
    }
    .calendar-table td {
        width: 34px;
        height: 34px;
        text-align: center;
        cursor: pointer;
        border-radius: 50%;
    }

    /* START / END DATE */
    .start-end {
        background-color: #0d6efd;
        color: #fff;
    }

    /* RANGE */
    .in-range {
        background-color: #cfe2ff;
        color: #0d6efd;
    }

    /* Hover */
    .calendar-table td:hover {
        background-color: #e7f1ff;
    }


    input#myDateRangePicker {
        width: 236px;
        background-color: #ffffff;
        border-radius: 6px;
    }


    .disabled-date {
        color: #bbb;
        background-color: #fafafa;
        pointer-events: none;
        cursor: not-allowed;
    }

    .calendar-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 12px;
    }

    .calendar-actions button {
        background-color: #2563eb; 
        color: #ffffff; 
        border: none;
        border-radius: 10px; 
        padding: 7px 16px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        transition: all 0.2s ease-in-out;
    }



    /* Main border only */
    .password-group {
        border: 1px solid #ced4da;
        border-radius: 6px;
        overflow: hidden;
    }

    /* Remove inner borders */
    .password-group .input-group-text,
    .password-group .form-control,
    .password-group .btn {
        border: none !important;
        box-shadow: none !important;
    }

    /* Fix button background */
    .password-group .btn {
        background: white;
    }

    /* Focus effect (important for UX) */
    .password-group:focus-within {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    }

    .email-group {
        border: 1px solid #ced4da;
        border-radius: 6px;
        overflow: hidden;
    }

    .email-group .input-group-text,
    .email-group .form-control {
        border: none !important;
        box-shadow: none !important;
    }

    .email-group:focus-within {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    }

    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .calendar-icon.left {
        position: absolute;
        left: 12px;
        color: #6c757d;
        font-size: 16px;
        pointer-events: none;
    }

    .date-input {
        padding-left: 36px; 
        background-color: #ffffff
    }








