/* Custom Notification Styles - Shared across all pages */
.custom-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: #d4edda;
    color: #155724;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    pointer-events: auto;
    max-width: 90%;
    text-align: center;
}

.custom-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.custom-notification.error {
    background-color: #f8d7da;
    color: #721c24;
}

.custom-notification.success {
    background-color: #d4edda;
    color: #155724;
}

.custom-notification.warning {
    background-color: #fff3cd;
    color: #856404;
}

.notification-link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
    cursor: pointer;
}

.notification-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .custom-notification {
        width: 98%;
        max-width: 98%;
        box-sizing: border-box;
    }
}
