.index2-datetime-picker-input {
    cursor: pointer;
    background-color: #fff;
}

.index2-dtp-body-lock {
    overflow: hidden;
}

.index2-dtp-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(49, 12, 57, 0.55);
}

.index2-dtp-overlay.is-open {
    display: flex;
}

.index2-dtp-dialog {
    width: min(360px, calc(100vw - 24px));
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
    padding: 14px 14px 12px;
}

.index2-dtp-title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: #6e2579;
}

.index2-dtp-selected-text {
    margin: 0 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    color: #333;
    font-weight: 600;
}

.index2-dtp-selected-text.is-empty {
    color: #8a8a8a;
    font-weight: 500;
}

.index2-dtp-days-row {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    gap: 6px;
}

.index2-dtp-arrow {
    width: 30px;
    height: 54px;
    border: none;
    border-radius: 10px;
    background: #ececec;
    color: #555;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.index2-dtp-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.index2-dtp-days {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.index2-dtp-day {
    height: 54px;
    border: 4px solid transparent;
    border-radius: 10px;
    background: #b9b9b9;
    padding: 4px 2px;
    color: #111;
    cursor: pointer;
    position: relative;
    transform: scale(1);
    opacity: 1;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.index2-dtp-day:not(.is-selected):not(.is-disabled) {
    opacity: 0.68;
}

.index2-dtp-day.is-selected {
    transform: scale(1.08);
    opacity: 1;
    background: #dedede;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    z-index: 2;
}

.index2-dtp-day.is-weekend {
    transform: scale(0.5);
    transform-origin: center;
}

.index2-dtp-day.is-weekend.is-selected {
    transform: scale(0.54);
}

.index2-dtp-day.is-today {
    border-color: #e53a3a;
}

.index2-dtp-day.is-tomorrow {
    border-color: #f2c23c;
}

.index2-dtp-day.is-day-after-tomorrow {
    border-color: #36c165;
}

.index2-dtp-day.is-other-day {
    border-color: #8d45cf;
}

.index2-dtp-day.is-selected.is-today {
    border-color: #e53a3a;
}

.index2-dtp-day.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    transform: scale(1);
}

.index2-dtp-day.is-weekend.is-disabled {
    transform: scale(0.5);
}

.index2-dtp-day-num {
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

.index2-dtp-day-month,
.index2-dtp-day-sub {
    display: block;
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
}

.index2-dtp-time-row {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.index2-dtp-hour,
.index2-dtp-minute {
    width: 88px;
    height: 66px;
    border: 2px solid #7396a8;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    font-size: 44px;
    line-height: 1;
    color: #222;
    padding: 0 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.index2-dtp-colon {
    font-size: 42px;
    line-height: 1;
    color: #222;
    font-weight: 700;
}

.index2-dtp-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.index2-dtp-actions button {
    border: none;
    background: #f1f1f1;
    color: #2b2b2b;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
}

.index2-dtp-actions .index2-dtp-done {
    background: #e9f7f2;
    color: #127b62;
    font-weight: 700;
}

@media (max-width: 767px) {
    .index2-dtp-overlay {
        padding: 8px;
    }

    .index2-dtp-dialog {
        width: min(360px, calc(100vw - 16px));
        border-radius: 14px;
        padding: 12px 10px 10px;
    }

    .index2-dtp-title {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .index2-dtp-selected-text {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .index2-dtp-days-row {
        grid-template-columns: 26px 1fr 26px;
        gap: 4px;
    }

    .index2-dtp-arrow {
        width: 26px;
        height: 46px;
        border-radius: 8px;
        font-size: 16px;
    }

    .index2-dtp-days {
        gap: 6px;
    }

    .index2-dtp-day {
        height: 46px;
        border-width: 3px;
        border-radius: 8px;
    }

    .index2-dtp-day-num {
        font-size: 15px;
    }

    .index2-dtp-day-month,
    .index2-dtp-day-sub {
        font-size: 9px;
    }

    .index2-dtp-hour,
    .index2-dtp-minute {
        width: 74px;
        height: 52px;
        font-size: 32px;
    }

    .index2-dtp-colon {
        font-size: 30px;
    }

    .index2-dtp-actions {
        margin-top: 10px;
        gap: 6px;
    }

    .index2-dtp-actions button {
        padding: 7px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .index2-dtp-title {
        font-size: 22px;
    }

    .index2-dtp-hour,
    .index2-dtp-minute {
        width: 68px;
        height: 48px;
        font-size: 28px;
    }

    .index2-dtp-colon {
        font-size: 28px;
    }
}
