/* ==========================================
   ROYAL REMINDER NOTIFICATIONS
   ========================================== */
#reminderContainer {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.reminder-notification {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid #d4af37;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow:
        0 20px 60px rgba(10, 17, 40, 0.25),
        0 0 30px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: reminderSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.reminder-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4b0 50%, #d4af37 100%);
    animation: shimmer 3s infinite;
}

@keyframes reminderSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.reminder-fade-out {
    animation: reminderFadeOut 0.3s ease-out forwards;
}

@keyframes reminderFadeOut {
    to {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
}

.reminder-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #4c1d95 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    animation: bellRing 2s ease-in-out infinite;
}

.reminder-icon svg {
    stroke: #d4af37;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

@keyframes bellRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.reminder-content {
    flex: 1;
    min-width: 0;
}

.reminder-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a1128;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.reminder-message {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

.reminder-close {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #d4af37;
}

.reminder-close:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.reminder-close svg {
    stroke: currentColor;
}

.reminder-close:hover svg {
    stroke: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    #reminderContainer {
        right: 15px;
        left: 15px;
        max-width: none;
    }

    .reminder-notification {
        padding: 1.25rem;
    }

    .reminder-icon {
        width: 40px;
        height: 40px;
    }

    .reminder-title {
        font-size: 1rem;
    }

    .reminder-message {
        font-size: 0.875rem;
    }
}

/* Pulse effect for urgent reminders */
.reminder-notification.urgent {
    animation: reminderSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1), urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {

    0%,
    100% {
        box-shadow:
            0 20px 60px rgba(10, 17, 40, 0.25),
            0 0 30px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow:
            0 20px 60px rgba(10, 17, 40, 0.35),
            0 0 40px rgba(212, 175, 55, 0.5);
    }
}