/* Notifications Container */
#bernarion-notifications-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.bernarion-notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.bernarion-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.notification-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.bernarion-notification.notice-success {
    border-left: 4px solid #27ae60;
    background: #f0f8f5;
}

.bernarion-notification.notice-success .notification-content p {
    color: #27ae60;
    font-weight: 500;
}

.bernarion-notification.notice-error {
    border-left: 4px solid #e74c3c;
    background: #fdf6f5;
}

.bernarion-notification.notice-error .notification-content p {
    color: #e74c3c;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--bernarion-dark-purple);
}

/* Mobil verzió */
@media (max-width: 768px) {
    #bernarion-notifications-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}