/* Hela boxen */
.Zebra_DatePicker {
    background: #ffffff;
    border: 1px solid #d0d7de;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header (månad + pilar) */
.Zebra_DatePicker .dp_header {
    background: #00a0e0;
    color: #fff;
    border-radius: 6px;
    padding: 6px;
}

/* Veckodagar */
.Zebra_DatePicker .dp_daypicker th {
    background: #f5f7fa;
    color: #555;
    font-weight: 600;
}

/* Standarddagar */
.Zebra_DatePicker .dp_body td {
    background: #fff;
    border: 1px solid #eee;
}

/* Hover */
.Zebra_DatePicker .dp_body td:hover {
    background: #00a0e0;
    color: #fff;
}

/* Vald dag */
.Zebra_DatePicker .dp_body .dp_selected {
    background: #007bb5;
    color: #fff;
    font-weight: bold;
}

/* Idag */
.Zebra_DatePicker .dp_body .dp_current {
    color: #00a0e0;
    font-weight: bold;
}

/* Disabled */
.Zebra_DatePicker .dp_body .dp_disabled {
    background: #f9f9f9;
    color: #ccc;
}

/* Footer buttons */
.Zebra_DatePicker .dp_actions td {
    background: #00a0e0;
    color: #fff;
    border-radius: 6px;
}

.Zebra_DatePicker .dp_actions td:hover {
    background: #007bb5;
}

.Zebra_DatePicker td,
.Zebra_DatePicker th {
    padding: 8px;
}


@media (max-width: 768px) {
    .Zebra_DatePicker {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 32px) !important;
        max-width: 360px !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
    }

    .Zebra_DatePicker table {
        width: 100% !important;
        table-layout: fixed !important;
    }

    .Zebra_DatePicker td,
    .Zebra_DatePicker th {
        width: auto !important;
        min-width: 0 !important;
        padding: 7px 3px !important;
        box-sizing: border-box !important;
    }

    .Zebra_DatePicker .dp_header,
    .Zebra_DatePicker .dp_footer {
        width: 100% !important;
    }

.Zebra_DatePicker .dp_daypicker th,
.Zebra_DatePicker .dp_body .dp_selected,
.Zebra_DatePicker .dp_actions td {
    background: #00a0e0 !important;
    color: #fff !important;
}

.Zebra_DatePicker .dp_body .dp_current {
    color: #00a0e0 !important;
    font-weight: bold;
}

}

