.mhq-date-picker {
    position: relative;
    width: 100%;
}

.mhq-date-native {
    display: none;
}

.mhq-date-trigger {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #111625;
    color: var(--text);
    padding: 9px 11px;
    text-align: left;
    font-size: 13px;
    cursor: pointer;
}

.mhq-date-trigger:focus {
    outline: 2px solid rgba(125, 116, 255, 0.45);
    border-color: transparent;
}

.mhq-date-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 140;
    width: 280px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #0f1527;
    box-shadow: var(--shadow);
    padding: 10px;
    display: grid;
    gap: 10px;
}

.mhq-date-popover.is-hidden {
    display: none;
}

.mhq-date-row {
    display: grid;
    gap: 6px;
}

.mhq-date-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
}

.mhq-date-month-label {
    text-align: center;
    font-size: 13px;
    color: #dbe5ff;
    font-weight: 600;
}

.mhq-date-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.mhq-date-weekdays span {
    text-align: center;
    font-size: 11px;
    color: #9ab0e4;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.mhq-date-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.mhq-date-day {
    border: 1px solid rgba(94, 119, 183, 0.38);
    background: #0b1224;
    color: #dce7ff;
    border-radius: 8px;
    font-size: 12px;
    padding: 7px 0;
    cursor: pointer;
}

.mhq-date-day:hover {
    border-color: rgba(126, 151, 220, 0.65);
}

.mhq-date-day.is-muted {
    color: #6f84b8;
    background: #0a1020;
}

.mhq-date-day.is-selected {
    background: #253e7f;
    border-color: rgba(137, 163, 233, 0.92);
    color: #f2f6ff;
}

.mhq-date-day.is-today {
    box-shadow: inset 0 0 0 1px rgba(174, 196, 255, 0.85);
}

.mhq-date-time-row {
    display: grid;
    gap: 6px;
}

.mhq-date-time-row label {
    font-size: 11px;
    color: #9fb0db;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.mhq-date-row label {
    font-size: 11px;
    color: #9fb0db;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.mhq-date-row input {
    width: 100%;
    border: 1px solid rgba(107, 128, 186, 0.42);
    border-radius: 8px;
    background: #0b1121;
    color: #eef3ff;
    padding: 7px 8px;
}

.mhq-date-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
