/* Стили для уведомлений */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transform: translateX(600px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

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

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

.notification-content i {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.notification-success .notification-content i {
    color: #4caf50;
}

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

.notification-error .notification-content i {
    color: #f44336;
}

.notification-content p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: color 0.2s;
}

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

@media (max-width: 576px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}
