#map {
    width: 95%;
    height: 95%;
  }

  #body {
    font-family: 'Roboto';
  }

  .ol-popup {
    position: absolute;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
    font-family: 'Roboto', sans-serif;
  }
.close-popup
{
    position: absolute;
    top: 2px;
    right: 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #222222;
    cursor: pointer;
  }
 
  .close-popup:hover,
  .close-popup:focus {
    color: #000000;
    cursor: pointer;
  }

  .popup-table {
    width: 100%;
    border-collapse: collapse;

  }

  .popup-table th,
  .popup-table td {
    padding: 5px;
    border: 0px solid #ccc;
  }

  .popup-table th {
    background-color: #f2f2f2;
    font-weight: bold;
  }

  .popup-table td {
    text-align: center;
  }

  #overlay {
    z-index: 9998;
    overflow: auto;
    position: absolute;
    top: 20px;
    width: fit-content;
    left: 80%;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffffe9;
    border-color: #ccc;
    border-width: 1px;
    padding: 10px;
    border-radius: 10px;
  }


  /*ESTILS PER IFRAME*/
  #lateral {
    position: fixed;
    top: 0;
    left: -500px;
    width: 500px;
    height: 100%;
    background-color: #f1f1f1;
    transition: left 0.3s ease;
    z-index: 9998;
  }

  #iframe {
    width: 100%;
    height: 100%;
  }


  #lateral iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  #cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
  }

  #cerrar::before,
  #cerrar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  #cerrar::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }