﻿.high-light {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
}

.high-light-button {
    padding: 10px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.high-light-button:hover .icon-size {
    transform: scale(1.3);
}

.high-light-button.active {
    background-color: #e6f0ff !important;
    border: 2px solid #007bff !important;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5) !important;
}

.icon-size {
    height: 29px;
    width: 29px;
    transition: transform 0.3s ease-in-out;
}