/* --- Notifications --- */

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000; /* Выше всех окон */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-notification {
    background-color: #2a2d31; /* Темный фон */
    color: #f0f0f0; /* Светлый текст */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1); /* Плавный эффект выезда */
    max-width: 350px;
    border-left: 5px solid #4a90e2; /* Синяя полоска-акцент */
}

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

.toast-notification .toast-icon {
    font-size: 24px;
}

.toast-notification .toast-body {
    display: flex;
    flex-direction: column;
}

.toast-notification .toast-title {
    font-weight: 600;
    margin: 0;
}

.toast-notification .toast-message {
    font-size: 14px;
    margin: 4px 0 0;
    opacity: 0.9;
}

.toast-notification .toast-actions {
    margin-top: 10px;
}

.toast-notification .btn {
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    margin-right: 8px;
}

.toast-notification .btn-primary {
    background-color: #4a90e2;
    color: white;
}

.toast-notification .btn-secondary {
    background-color: #555;
    color: white;
}