.white-button, .black-button {
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    color: #0D0D0D;
    padding: 6px 8px; /* Чуть меньше отступы */
    font-weight: 600;
    font-size: 15px; /* Немного уменьшен шрифт */
    border-radius: 30px; /* Чуть меньше скругление */
    transition: transform 0.15s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
    will-change: transform;
    cursor: pointer;
}

/* Эффект наведения */
.white-button:hover, .t396__elem:hover .white-button {
    background: #00BFBF;
    color: white;
    transform: scale(1.03) !important; /* Чуть менее заметное увеличение */
}

/* Эффект нажатия */
.white-button:active {
    transform: scale(1.05) !important; /* Чуть менее резкий эффект */
}

.black-button {
    background: #0D0D0D;
    color: white;
}

/* Эффект наведения */
.black-button:hover, .t396__elem:hover .black-button {
    background: #00BFBF;
    color: #0D0D0D;
    transform: scale(1.03) !important;
}

/* Эффект нажатия */
.black-button:active {
    transform: scale(1.05) !important;
}
