  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }

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

  .layer-control {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    width: 200px;
  }

  .layer-control h3 {
    margin-top: 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
  }

  .layer-item {
    margin: 10px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .layer-item input {
    margin-right: 10px;
  }

  .color-preview {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 2px;
  }

  .search-panel {
    position: absolute;
    bottom: 20px;
    z-index: 5;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    width: 30%;
  }

  .contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (max-width: 768px) {
    .search-panel {
      width: 90%;
    }
  }

  /* Botón para abrir */
  .btn-float-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #1a73e8;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
  }

  .modal-full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    animation: slideUp 0.4s ease-out;
  }

  .modal-full-container {
    width: 90%;
    max-width: 1000px;
    text-align: center;
  }

  .section-title {
    color: #1a73e8;
    font-size: 1.2rem;
    text-align: left;
    margin: 25px 0 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }

  .layers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .layer-card {
    background: #f1f3f4;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
  }

  .layer-card.active {
    border-color: #1a73e8;
    background: #e8f0fe;
    color: #1a73e8;
  }

  .layer-card.mini {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .route-input-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 15px;
  }

  .input-group-custom {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }

  .form-control-custom {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }

  .btn-action {
    background: #34a853;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }