/* ─────────────────────────────
   DATEPICKER INPUT (your existing)
   ───────────────────────────── */
.dash-datepicker-input-wrapper {

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid #30363d !important;
    border-radius: 0px;
    height: 18px !important;

    display: flex;
    align-items: center;
    padding: 0 4px;
}

.dash-datepicker-input {
    min-width: 0;
}


/* Smaller text when OPEN (correct target) */
.dash-datepicker-input-wrapper[data-state="open"] .dash-datepicker-input {
    font-size: 10px !important;
    line-height: 14px !important;
}

/* Optional: also on hover */
.dash-datepicker-input-wrapper:hover {
    border: 1px solid #4b5563 !important;
}

/* Push caret icon to the far right */
.dash-datepicker-input-wrapper svg {
    margin-left: auto;
    flex-shrink: 0;
}

/* Focus state (no weird highlight) */
.dash-datepicker-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Calendar popup container */
.dash-datepicker-content {
    background-color: rgba(13, 17, 23, 0.75) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Placeholder */
.dash-datepicker-input::placeholder {
    color: #6b7280 !important;
}