.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 500px;
    animation: slideIn 0.3s ease;
    border-left: 4px solid;
}

.notification--success {
    border-left-color: #27ae60;
}

.notification--success .notification__content i {
    color: #27ae60;
}

.notification--error {
    border-left-color: #e74c3c;
}

.notification--error .notification__content i {
    color: #e74c3c;
}

.notification--info {
    border-left-color: #3498db;
}

.notification--info .notification__content i {
    color: #3498db;
}

.notification__content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification__content i {
    font-size: 18px;
}

.notification__close {
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.notification__close:hover {
    color: #2c3e50;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .notification {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
    }
}