.fab-login {
  position: fixed;
  top: 40px;
  right: 35px;
  z-index: 2000;
  background: linear-gradient(90deg, #17b978 0%, #086972 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.15);
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.fab-login:hover {
  background: linear-gradient(90deg, #086972 0%, #17b978 100%);
  box-shadow: 0 6px 24px rgba(5, 150, 105, 0.25);
  color: #fff;
  text-decoration: none;
}
.fab-login i {
  margin-right: 10px;
  font-size: 1.2rem;
}
@media (max-width: 600px) {
  .fab-login { 
    top: 15px; 
    right: 10px; 
    padding: 10px 18px; 
    font-size: 1rem;
  }
}

.filter-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-container label {
    margin-right: 5px;
}

.filter-container select {
    margin-right: 15px;
    min-width: 150px;
}

/* Botón de Filtrar */
.botonFiltro {
    top: 1vh;
    left: 80vh;
}

/* Botón de Limpiar */
.botonLimpiar {
    top: 1vh;
    left: 90vh;
}

#customModal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 10001;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.5);
  }
  /* Modal caja */
  #customModal .modal-content {
    background: #fff;
    margin: 5vh auto;
    border-radius: 10px;
    padding: 30px 30px 20px 30px;
    width: 95%;
    max-width: 480px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    position: relative;
    font-family: 'Segoe UI', 'Arial', sans-serif;
  }
  #customModal .modal-header {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  #customModal .modal-title {
    font-size: 1.15rem;
    color: #196931;
    font-weight: 600;
    margin: 0;
  }
  #customModal .close {
    position: absolute;
    right: 20px; top: 22px;
    font-size: 1.5rem;
    color: #555;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  #customModal .close:hover { color: #b91c1c; }
  #customModal table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 6px;
  }
  #customModal th, #customModal td {
    text-align: left;
    padding: 5px 4px;
    font-size: 1rem;
  }
  #customModal th {
    font-weight: 500;
    color: #196931;
    width: 43%;
    background: #f3f7f3;
  }
  #customModal tr:nth-child(even) td { background: #f6f6f6; }
  #customModal tr:nth-child(odd) td { background: #fff; }
  @media (max-width: 500px) {
    #customModal .modal-content { padding: 8px; }
    #customModal .modal-title { font-size: 1rem;}
    #customModal th, #customModal td { font-size: 0.98rem;}
  }