/* Pause- & Feierabend-Reminder Modals (Soll-Zeit-basiert). */

.lp-time-reminder {
    position: fixed;
    inset: 0;
    z-index: 10070;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lpTimeReminderFadeIn 180ms ease-out;
}

.lp-time-reminder--hidden {
    display: none;
}

.lp-time-reminder-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
}

.lp-time-reminder-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.06);
    animation: lpTimeReminderPopIn 220ms cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.lp-time-reminder-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.lp-time-reminder-icon--break {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}

.lp-time-reminder-icon--end {
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.lp-time-reminder-title {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.lp-time-reminder-sub {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 18px;
}

.lp-time-reminder-countdown {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: #fef2f2;
    color: #b91c1c;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #fecaca;
}

.lp-time-reminder-countdown strong {
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}

.lp-time-reminder-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-time-reminder-btn {
    border: none;
    border-radius: 12px;
    padding: 11px 22px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-time-reminder-btn--later {
    background: #f1f5f9;
    color: #475569;
}

.lp-time-reminder-btn--later:hover {
    background: #e2e8f0;
}

.lp-time-reminder-btn--primary {
    color: #fff;
}

.lp-time-reminder-btn--break {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}

.lp-time-reminder-btn--break:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(217, 119, 6, 0.45);
}

.lp-time-reminder-btn--end {
    background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.lp-time-reminder-btn--end:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(220, 38, 38, 0.45);
}

.lp-time-reminder-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@keyframes lpTimeReminderFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lpTimeReminderPopIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
