/* ====== Стили уведомления ====== */
.send-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

#formResult {
    display: none;
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#formResult.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#formResult.hide {
    opacity: 0;
    transform: translateY(-10px);
}
