#iconMedicao {
    position: relative;
    top: 2px;
}

/* BARRA DE MEDICAO */
.barra-medicao {
    padding: 2px 2px 0;
    background-color: #333333;
    display: flex;
    flex-direction: row; /* Disposição em linha */
    align-items: flex-start;
    border: solid white 1px 0 1px 1px;
    opacity: 1;
    height: 54px;
    width: 453px;
    transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
    position: absolute;
    top: 8px;
    right: 60px;
    z-index: 3;
    pointer-events: auto; /* Default pointer events for visible state */
}

.hidden {
    transform: translateX(0.5%);
    opacity: 0;
    pointer-events: none; /* Disable pointer events when hidden */
}

.visible {
    transform: translateX(-0.5%);
    opacity: 1;
    pointer-events: auto; /* Enable pointer events when visible */
}

/* DIVISÃO 1 */
.divisao-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 38%; /* Ocupa 39% da largura */
    height: 100%; /* Ocupa toda a altura disponível */
    box-sizing: border-box; /* Inclui padding e border no cálculo da altura */
    padding: 0 4px; /* Adicionado padding para evitar o corte dos elementos */
}

/* DIVISÃO 2 */
.divisao-2 {
    width:62%; /* Ocupa o restante da largura */
    height: 100%; /* Ocupa toda a altura disponível */
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #cccccc; /* Linha vertical de separação */
}

/* TÍTULO */
.titulo-medicao {
    font-size: 10px;
   /*  margin-top: 2px; */
    /* font-weight: bold; */
    margin-bottom: 1px;
    text-align: center;
    width: 100%;
    color: whitesmoke;
}

/* BOTOES */
.botoes-medicao {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%; /* Ocupa toda a largura disponível */
    height: 65%; /* Ajustado para caber dentro da altura disponível */
    margin: 0;
    padding: 0;
    list-style: none;
}

.botoes-medicao li {
    background-color: #e4e4e4;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
}

.botoes-medicao li:hover {
    background-color: #d0d0d0;
}

.botoes-medicao li.selected {
    background-color: #f2f0f0;
}

.botoes-medicao li .svg-icone {
    transition: fill 0.1s ease, width 0.1s ease, height 0.1s ease;
    width: 20px;
    height: 20px;
}

.botoes-medicao li.selected .svg-icone {
    fill: royalblue;
    width: 23px;
    height: 23px;
}

/* LEMBRETE */
/* .reminder {
    text-align: center;
    padding: 4px;
    font-size: 10px;
    color: #777777;
    width: 100%;
}

.reminder i {
    padding-left: 5px;
    margin-right: 5px;
    font-size: 16px;
} */

/* LEMBRETE */
.reminder {
    display: flex; /* Align items horizontally */
    align-items: center; /* Center items vertically */
    justify-content: flex-start; /* Align items to the start of the container */
    padding: 3px;
    font-size: 11px;
    color: #777777;
    width: 100%; /* Ocupa toda a largura disponível */
}

.icon-container {
    margin-right: 5px; /* Space between icon and text */
    padding: 15px;
    font-size: 13px;
    color: whitesmoke;
}

.text-container {
    flex-grow: 1; /* Allows the text container to take up remaining space */
    text-align: justify;
    color: whitesmoke;
}

.ol-tooltip {
    background-color: #f2f0f0 !important;
    width: 160px !important;
    height: 100px !important;
    padding: 5% !important;
    border-radius: 10px !important;
    font-size: 11px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    word-wrap: break-word !important;
}

.ol-tooltip {
    background-color: rgba(242, 240, 240, 0.85) !important;
    width: 160px !important;
    height: 100px !important;
    padding: 5% !important;
    border-radius: 10px !important;
    font-size: 11px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    word-wrap: break-word !important;
}

.tooltip-title {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.ol-tooltip strong {
    font-weight: bold !important;
}