.ui-datepicker {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    padding: 10px;
    font-size: 13px;
    z-index: 9999 !important;
}

.ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
}

.ui-datepicker-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    color: #2563eb;
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker-calendar th {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    padding: 4px 2px;
    text-align: center;
}

.ui-datepicker-calendar td {
    text-align: center;
    padding: 2px;
}

.ui-datepicker-calendar td a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 26px;
    border-radius: 6px;
    color: #0f172a;
    text-decoration: none;
}

.ui-datepicker-calendar td a:hover {
    background: #e0f2fe;
}

.ui-datepicker-calendar .ui-state-active {
    background: #2563eb;
    color: #fff;
}
