/* Shared notification banner (internal + guest layouts) */
.notification-container {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 90vw;
    width: 400px;
    pointer-events: none;
}

.notification-container .notification {
    pointer-events: auto;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    background: white;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    word-wrap: break-word;
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-warning {
    border-left: 4px solid #ffc107;
}

.notification-info {
    border-left: 4px solid #17a9e4;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

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

@media (max-width: 768px) {
    .notification-container {
        width: calc(100vw - 32px);
        max-width: none;
        left: 16px;
        right: 16px;
        transform: none;
    }
}
