/* Premium Notifications Styling */
:root {
    --notification-success: #5cb85c;
    --notification-error: #d9534f;
    --notification-info: #5bc0de;
    --notification-warning: #f0ad4e;
    --notification-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: calc(100% - 40px);
}

.notification {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--notification-shadow);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
}

.notification.success::before {
    background-color: var(--notification-success);
}

.notification.error::before {
    background-color: var(--notification-error);
}

.notification.info::before {
    background-color: var(--notification-info);
}

.notification.warning::before {
    background-color: var(--notification-warning);
}

.notification.visible {
    transform: translateX(0);
    opacity: 1;
}

.notification.hiding {
    transform: translateX(120%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.notification-content i {
    font-size: 20px;
}

.notification.success .notification-content i {
    color: var(--notification-success);
}

.notification.error .notification-content i {
    color: var(--notification-error);
}

.notification.info .notification-content i {
    color: var(--notification-info);
}

.notification.warning .notification-content i {
    color: var(--notification-warning);
}

.notification-content span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 0;
    margin-left: 10px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 576px) {
    .notification-container {
        top: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
    
    .notification {
        padding: 12px;
    }
    
    .notification-content i {
        font-size: 18px;
    }
    
    .notification-content span {
        font-size: 13px;
    }
} 