.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
}

.toast-message {
    position: relative;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.toast-error { background: #f44336; }
.toast-warning { background: #ff9800; }
.toast-info { background: #2196f3; }

.toast-message button.close-button {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: transparent;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}


.top-row.auth2 {
    height: auto; /* Высота будет подстраиваться под контент */
    min-height: 100px; /* Например, минимум для начальной высоты */
    padding: 1rem; /* Отступы по желанию */
}