/* Reminder-Toast (Kalender-Benachrichtigungen) */
.lp-reminder-toast-host {
    position: fixed;
    top: 84px;
    right: 28px;
    z-index: 9200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.lp-reminder-toast {
    pointer-events: auto;
    display: flex;
    align-items: stretch;
    gap: 10px;
    min-width: 320px;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(15,23,42,.18);
    padding: 12px 14px;
    transform: translateX(20px);
    opacity: 0;
    transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.2,.64,1);
}
.lp-reminder-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.lp-reminder-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.lp-reminder-toast-body { flex: 1; min-width: 0; }
.lp-reminder-toast-title {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1.2;
}
.lp-reminder-toast-sub {
    font-size: 12px;
    color: #475569;
    line-height: 1.35;
    white-space: normal;
}
.lp-reminder-toast-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0 4px;
    font-size: 12px;
    flex-shrink: 0;
}
.lp-reminder-toast-close:hover { color: #0f172a; }
