/* Не кэшировать стили */
header("Cache-Control: no-cache, no-store, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#container {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
}

#top,
#middle,
#comment {
    flex: 1;
}

#top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
}

#middle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightblue;
/*    background-color: lightgreen;*/
}

#comment {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightyellow;
}

#information-title {
   text-align: center;
}

#description-container {
    max-width: 850px !important;
}

#button1, #button2 {
   width: 150px; /* Установите нужную ширину кнопок */
   height: 50px; /* Установите нужную высоту кнопок */
   border-radius: 25px; /* Установите половину высоты кнопок, чтобы получить овальную форму */
}

#languageSelect {
   margin-left: 30px; /* Устанавливает отступ слева на 10px */
}

.tooltip {
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px;
    border-radius: 4px;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -100%); 
    max-width: 250px;
}

.clicked {
   background-color: lightblue; 
}
/*Extentions baloon*/
.custom-tooltip {
    display: none;
    position: absolute;
    padding: 8px;
    border: 1px solid #d3d3d3;
    z-index: 1000;
    width: 200px; 
    top: 75px; /* Опускаем ниже */
    font-size: 14px;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
}

#extensionSelect:hover + .custom-tooltip {
    display: block;
}
