/* Контейнер для уведомлений */
#notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 340px;
}

/* Стиль уведомлений */
.notification {
    background: linear-gradient(135deg, #0055A5, #00B3DB); /* Kapitalbank-style gradient */
    color: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 12px 28px rgba(0, 85, 165, 0.25);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 15px;
    margin-bottom: 12px;
    animation: fadeIn 0.4s ease, bounce 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

/* Галочка (иконка подтверждения) */
.notification .checkmark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0055A5;
    font-size: 16px;
    font-weight: bold;
    margin-right: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Текст */
.notification .text {
    flex-grow: 1;
    text-align: left;
    line-height: 1.4;
}

/* Анимации */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Адаптация под мобильные */
@media (max-width: 600px) {
    .notification {
        max-width: 300px;
        font-size: 13px;
        padding: 12px 14px;
    }

    .notification .checkmark {
        width: 24px;
        height: 24px;
        font-size: 14px;
        margin-right: 10px;
    }
}
