html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f5f6f8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Estilos mejorados para la cabecera */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bg-success {
  background: linear-gradient(90deg, #1e7e34 0%, #28a745 50%, #5dd879 100%) !important;
}

.bg-primary {
  background: linear-gradient(90deg, #0056b3 0%, #007bff 50%, #6cb2ff 100%) !important;
}

.bg-warning {
  background: linear-gradient(90deg, #d39e00 0%, #ffc107 50%, #ffda6a 100%) !important;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}