@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; 
  overflow-y: auto;   /* Permite scroll vertical para el menu hamburguesa */
}

.layout-mapa {
  display: flex;
  flex: 1;
  flex-direction: row; 
}

.panel-lateral {
  width: 320px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: visible;
  flex-shrink: 0;
  transition: width 0.2s ease;
}

.seccion-mapa {
  flex: 1;
  position: relative;
  min-height: 300px; 
}

.mapa-principal {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Scrollbar del panel */
.panel-lateral::-webkit-scrollbar {
  width: 4px;
}
.panel-lateral::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.panel-lateral::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 2px;
}

.panel-lateral section {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.panel-lateral h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #093a27;
  margin-bottom: 14px;
}

.buscador-input-wrap {
  position: relative;
}

.buscador-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #b4b4b4;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.buscador-input:focus {
  border-color: #5fe254;
}

.sugerencias {
  position: absolute;
  width: calc(100% - 28px); 
  top: 100%;
  left: 14px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

.sugerencia-item {
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}

.sugerencia-item:hover {
  background: #f0faf0;
  color: #093a27;
}

.sin-resultados {
  padding: 10px 14px;
  font-size: 13px;
  color: #999;
}

.campo {
  margin-bottom: 12px;
}

.campo label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.campo select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #b4b4b4;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236d6d6d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.campo select:focus {
  border-color: #5fe254;
}

.boton {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.2s;
}

.boton-secundario {
  background: #65d432;
  color: #ffffff;
  margin-top: 4px;
}

.boton-secundario:hover {
  background: #54b829;
}

.lista-reportes {
  flex: 1;
}

.placeholder-texto {
  font-size: 13px;
  color: #999;
  text-align: center;
  padding: 10px 0;
}

.reporte-item {
  background: #eeeeee;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  box-shadow: 2px 2px 0 #c5c5c5;
}

.reporte-item:hover {
  border-left-color: #5fe254;
  background: #e8f5e3;
  transform: translateX(2px);
}

.reporte-item-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #093a27;
  margin-bottom: 4px;
}

.reporte-item-lugar {
  font-size: 12px;
  color: #999999;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reporte-item-lugar::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5a623'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 900px) {
  .layout-mapa {
    flex-direction: column;
  }

  .panel-lateral {
    width: 100%;
    max-height: 45vh; 
    order: 2; 
  }

  .seccion-mapa {
    order: 1;
    height: 50vh;        
    min-height: 300px;   
    width: 100%;
  }


  .mapa-principal {
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .panel-lateral section {
    padding: 16px;
  }

  .panel-lateral h2 {
    font-size: 15px;
  }

  .buscador-input, .campo select, .boton {
    padding: 8px 12px;
    font-size: 13px;
  }

  .reporte-item {
    padding: 10px 12px;
  }

  .reporte-item-titulo {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
  }
  .panel-lateral {
    max-height: 45vh;
  }
}

