html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
  text-align: start;
}

/* =========================================
   CUSTOM DASHBOARD STYLES
   ========================================= */

/* Custom Colors */
:root {
  --primary-custom: #0d6efd;
  /* Bootstrap Blue */
  --secondary-custom: #6c757d;
  --light-bg: #f8f9fa;
  --card-hover-transform: translateY(-5px);
}

body {
  background-color: #f4f6f9;
  /* Light grey background for professional look */
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 60px);
  /* Fill remaining usage */
  width: 100%;
  margin: 0;
  background: linear-gradient(135deg, #e0f7fa 0%, #e2ebf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  max-width: 800px;
}

/* Text Colors */
.text-primary-custom {
  color: #2c3e50;
  /* Darker blue/grey for professional headers */
}

.text-success-custom {
  color: #198754;
}

.text-warning-custom {
  color: #ffc107;
}

/* Stat Cards */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background-color: #ffffff;
}

.stat-card:hover {
  transform: var(--card-hover-transform);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.bg-light-blue {
  background-color: #e7f1ff;
}

.bg-light-green {
  background-color: #d1e7dd;
}

.bg-light-orange {
  background-color: #fff3cd;
}

/* Sede Cards */
.sede-card {
  border-left: 5px solid #0d6efd;
  transition: transform 0.2s;
}

.sede-card:hover {
  transform: scale(1.02);
}