#global-notifications-container {
    width: 100%;
    z-index: 10000;
}

.global-notification {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 60px; /* Extra padding on sides for close button space */
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
}

.notification-content {
    text-align: center;
}

.notification-content a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.notification-close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: inherit;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

/* Notification Levels */
.notification-info {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-bottom: 1px solid #bbdefb;
}

.notification-success {
    background-color: #e8f5e9;
    color: #1b5e20;
    border-bottom: 1px solid #c8e6c9;
}

.notification-warning {
    background-color: #fff3e0;
    color: #e65100;
    border-bottom: 1px solid #ffe0b2;
}

.notification-error {
    background-color: #ffebee;
    color: #b71c1c;
    border-bottom: 1px solid #ffcdd2;
}
