.dp-calendar {
    position: absolute;
    background: #fff;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 16px rgba(0,0,0,.14);
    z-index: 9999;
    user-select: none;
    width: 252px;
}
.dp-calendar * { box-sizing: border-box; }

.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: #c0d3ec;
    color: #000;
}
.dp-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 2px;
}
.dp-header button:hover { background: rgba(255,255,255,.2); }
.dp-title { font-weight: 700; font-size: 13px; }

.dp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 6px 8px 2px;
    border-bottom: 1px solid #f3f4f6;
}
.dp-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    padding: 3px 0;
}
.dp-weekdays span:first-child { color: #ef4444; }
.dp-weekdays span:last-child  { color: #3b82f6; }

.dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 8px 8px;
    gap: 1px;
}
.dp-day {
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    cursor: pointer;
    border-radius: 2px;
    min-height: 26px;
    line-height: 16px;
}
.dp-day:hover:not(.dp-empty) { background: #e5edff; }
.dp-day.dp-sunday   { color: #ef4444; }
.dp-day.dp-saturday { color: #3b82f6; }
.dp-day.dp-today    { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.dp-day.dp-selected { background: #2074E2 !important; color: #fff !important; }
.dp-day.dp-empty    { cursor: default; }

.dp-footer {
    border-top: 1px solid #f3f4f6;
    padding: 5px;
    text-align: center;
}
.dp-today-btn {
    font-size: 12px;
    color: #2074E2;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 2px 8px;
}
.dp-today-btn:hover { text-decoration: underline; }

input.dp-disabled {
    pointer-events: none;
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}
input.dp-disabled + .eye-input-wrap--date-icon,
input.dp-disabled ~ .eye-input-wrap--date-icon {
    pointer-events: none;
    opacity: 0.4;
}
