body {
  background: linear-gradient(120deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-fluid {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.card {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  background: rgba(255,255,255,0.97);
  width: 100%;
  max-width: 700px;
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

.table-container {
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 1rem;
  animation: fadeIn 0.7s;
}

.table th, .table td {
  vertical-align: middle !important;
  font-size: 1.05rem;
  padding: 0.7rem;
}

.btn-custom, .btn {
  min-width: 120px;
  border-radius: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(33,150,243,0.08);
}

.btn-success {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  border: none;
  color: #fff;
}

.btn-danger {
  background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
  border: none;
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(90deg, #a1c4fd 0%, #c2e9fb 100%);
  border: none;
  color: #1976d2;
}

.hidden {
  display: none !important;
}

.fila-feriado {
  background-color: #b6f5c9 !important; /* Verde claro bien visible */
}
.fila-no-tocado {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  .card {
    margin-top: 1rem;
  }
  .login-card {
    margin-top: 2rem;
  }
  .d-md-flex {
    flex-direction: column !important;
  }
}
