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

.divisao-1-flutuante {
  display: flex;                   /* Use flexbox */
  flex-direction: row;            /* Set direction to row */
  flex-wrap: wrap;                /* Allow items to wrap to the next line */
  justify-content: space-between; /* Distribute space evenly */
  align-items: flex-start;        /* Align items at the start */
  width: 100%;                    /* Full width */
  height: auto;                   /* Adjust height to content */
  box-sizing: border-box;         /* Include padding and border in height calculations */
  border-radius: 8px;
}

/* DIVISÃO 2 */
.divisao-2-flutuante {
  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-flutuante {
  position: relative;
  background: #333333;
  color: whitesmoke;
  height: auto;
  margin: 0;
  text-align: left;
  width: 100%;
  padding: 2px;
  border-top: solid 1px #aaaaaa;
  border-bottom: solid 1px #aaaaaa;
}

.titulo-flutuante .line-1 {
  font-family: 'Corbel', sans-serif;
  font-size: 16px;
  margin-left: 1px;
  font-weight: bold; 
}

.titulo-flutuante .icon {
  width: 25px; /* Adjust size as needed */
  height: 25px; /* Maintain aspect ratio */
  margin-right: 1px; /* Space between icon and text */
}

/* Styling for the second line */
.titulo-flutuante .line-2 {
  font-family: 'Myriad Concept', sans-serif;
  font-size: 12px;
  margin-left: 5px;
}

.mapa-flutuante-square-div {
  display: flex;
  justify-content: space-around; 
  background: #333333;
  width: 100%;
  border-radius: 0 0 9px 9px;
  padding: 10px;
}

.mapa-flutuante-square {
  box-sizing: border-box;    
  transition: transform 0.2s ease; /* Add this for smooth transitions */
  color: whitesmoke;
  background: #606060;
  text-align: center;
  border-radius: 9px;
  border: solid 1px #f2f0f0;
  cursor: pointer;
  transition: transform 0.2s ease; /* Add this for smooth transitions */
}             

.mapa-flutuante-square:hover {
  box-shadow: 1px 1px 12px aliceblue;
  transform: scale(1.02); /* Slight enlargement on hover */
}

.mapa-flutuante-square.active {

  font-weight: 500;
  border: solid 1px #aaaaaa;
  box-shadow: 1px 1px 12px aliceblue;
  transform: scale(1.02); /* Slight enlargement on hover */
}

.mapa-flutuante-square .map-thumbnail {
  width: 75px;
  padding: 5px;
  height: 75px;
}

.mapa-flutuante-square p {
  font-size: 9px;
  width: 75px;
  margin: 0;
}

.mapa-flutuante-square:hover p {
  opacity: 0.8; /* Slightly darker text on hover */
}

.mapa-flutuante-square label {
  cursor: pointer;
}

.mapa-flutuante-square input {
  display: none;
}

  .mapa-flutuante {
    opacity: 1;
    transition: transform 0.38s, opacity 0.3s ease;
  }


  .mapa-flutuante-hide {
    opacity: 0;
    transform: translateY(-192px);
    transition: transform 0.38s, opacity 0.5s ease;
  }

.barra-flutuante  {
/*   padding: 2px 2px 0; */
  background-color: #f2f0f0;
  display: flex;
  flex-direction: row; /* Disposição em linha */
  align-items: flex-start;
  border: solid white 1px 0 1px 1px;
  opacity: 1;
  height: 155px;
  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 */
}


/* BOTOES */
.botoes-flutuante {
  display: flex;
  justify-content: space-around;
  align-items: center;
/*   width: 100%; 
  height: 65%;  */
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

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

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

/* 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;
}

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