    /* Estructura base para que el footer permanezca al final */
    html, body {
        height: 100%;
        margin: 0;
      }
      .wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
      }
      .content {
        flex: 1;
      }
      /* Header con degradado: azul marino a azul eléctrico */
      header {
        background: linear-gradient(to right, #001f3f, rgb(2,72,134));
        color: white;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
      }
      header .logo {
        display: flex;
        align-items: center;
      }
      header .logo img {
        height: 50px;
        margin-right: 10px;
      }
      header .logo span {
        font-size: 1.8em;
        font-weight: bold;
      }
      nav {
        display: flex;
      }
      nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
      }
      nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 1em;
        transition: color 0.3s;
      }
      nav ul li a:hover {
        color: #FFD700;
      }
      .hamburger {
        display: none;
        font-size: 1.8em;
        cursor: pointer;
      }
      footer {
        background: rgb(6,10,14);
        color: white;
        text-align: center;
        padding: 15px 20px;
        margin-top: 20px;
      }
      /* Estilos para la sección de seguimiento */
      .search-container {
        max-width: 600px;
        margin: 50px auto;
        padding: 20px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        text-align: center;
      }
      .search-container h1 {
        margin-bottom: 20px;
        color: #333;
      }
      .search-container form {
        margin-bottom: 30px;
      }
      .search-container input[type="text"] {
        width: 80%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        margin-bottom: 10px;
      }
      /* Botón de búsqueda con icono y centrado */
      .search-container .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 12px 25px;
        background: linear-gradient(45deg,rgb(155, 6, 6),rgb(133, 31, 31));
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
        text-decoration: none;
        margin: 0 auto; /* Centrado */
      }
      .search-container .btn:hover {
        background: linear-gradient(45deg, #357ae8, #4285f4);
      }
      .report-details {
        text-align: left;
        margin-top: 20px;
      }
      .report-details h2 {
        margin-bottom: 15px;
        color: #4285f4;
      }
      .response {
        border-bottom: 1px solid #ddd;
        padding: 10px 0;
      }
      .response p {
        margin: 5px 0;
      }
      .response .fecha {
        font-size: 0.85em;
        color: #888;
      }
      .followup-form {
        margin-top: 20px;
        text-align: left;
      }
      .followup-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        resize: vertical;
      }
      .followup-form button {
        margin-top: 10px;
        padding: 12px 25px;
        background: linear-gradient(45deg, #4285f4, #357ae8);
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
      }
      .followup-form button:hover {
        background: linear-gradient(45deg, #357ae8, #4285f4);
      }
      /* Responsive: en móviles */
      @media (max-width: 768px) {
        header {
          flex-direction: column;
          align-items: center;
          position: relative;
        }
        header .logo {
          order: 1;
        }
        .hamburger {
          order: 2;
          display: block;
          position: absolute;
          top: 15px;
          right: 20px;
        }
        nav {
          order: 3;
          width: 100%;
        }
        nav ul {
          flex-direction: column;
          width: 100%;
          text-align: center;
          background: #001f3f;
          padding: 10px 0;
          margin-top: 10px;
          border-radius: 4px;
          display: none;
        }
        nav ul.show {
          display: flex;
        }
        nav ul li {
          padding: 10px 0;
          border-bottom: 1px solid rgba(255,255,255,0.3);
        }
        nav ul li:last-child {
          border-bottom: none;
        }
      }
      nav ul li {
        transition: transform 0.3s;
      }
      nav ul li:hover {
        transform: scale(1.05);
      }