﻿*:focus {
    outline: none !important; /*отключение черного выделения (для работы с клавиатуры)*/
}

#components-reconnect-modal {
    display: none !important;
}

body {
    background: var(--color-bg);
    margin: 0px;
}

.text {
    font-family: 'Montserrat';
}

.topmost {
    position: absolute;
}

.button {
    /* размер и форма */
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 50px; /* скругление*/
    /* текст */
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    text-decoration: none;
    color: #e0e0e0;
    /* фон и граница */
    background: transparent;
    border: 1.5px solid #444;
    backdrop-filter: blur(5px); /* лёгкий эффект стекла (опционально) */
    /* позиционирование и поведение */
    cursor: pointer;
    transition: all 0.25s ease;
    /* запрет выделения при клике */
    user-select: none;
    /*отключение синего выделения при клике с телефона*/
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
}

    .button:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: #666;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .button:active {
        transform: translateY(0);
        transition: transform 0.1s ease;
    }