.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    min-width: 280px;
    max-width: 350px;
    transform: translateX(-100%);
    opacity: 0;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 4.5s forwards;
}

.custom-notification.success {
    background-color: #4CAF50; /* Зеленый для успеха */
}

.custom-notification.error {
    background-color: #F44336; /* Красный для ошибки */
}

.custom-notification-message {
    flex-grow: 1;
    margin-right: 15px;
}

.custom-notification-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.custom-notification-close-btn:hover {
    opacity: 0.8;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Стили для иконок, если вы решите их добавить */
.custom-notification-icon {
    margin-right: 10px;
    font-size: 20px;
} 