/* Контейнер логотипа */
.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

/* Логотип */
.site-logo {
    height: 50px;
}

/* Иконка BVI */
.bvi-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    padding: 5px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 1000;
}

/* Эффект наведения */
.bvi-icon:hover {
    transform: scale(1.1);
}

/* Подсказка */
.tooltip {
    display: none;
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    margin-top: 5px;
    z-index: 1001;
}

/* Показать подсказку при наведении */
.bvi-icon:hover + .tooltip {
    display: block;
}

/* Скрытое по умолчанию модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .bvi-icon {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .tooltip {
        font-size: 16px;
    }
}
