/* Super Legível & Profissional Theme - BigEscolaPro 2026 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #0d6efd; /* Bootstrap Primary */
  --secondary: #6c757d;
  --info: #0dcaf0;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --bg-body: #eaedf2;
  --bg-card: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff !important; /* Force white background */
  min-height: 100vh;
  color: var(--dark);
  margin: 0;
  background-image: none !important; 
  animation: none !important;
}

/* Cards & Panels - Solid & Clean */
.glass-card, .card, .glass-panel {
  background: var(--bg-card) !important;
  border: 1px solid rgba(0,0,0,0.125) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  color: var(--dark) !important;
  backdrop-filter: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.text-white {
  color: #212529 !important; /* Force readable dark text even if class says white */
}
.text-white-50 {
  color: #6c757d !important; /* Force readable grey text */
}

.text-vibrant {
  color: var(--primary);
  background: none;
  -webkit-text-fill-color: initial;
}

/* Inputs & Forms */
.form-control, .form-select {
  background: #ffffff !important;
  border: 1px solid #ced4da !important;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  color: #212529 !important;
}

.form-control::placeholder {
  color: #adb5bd;
}

.form-control:focus, .form-select:focus {
  background: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #86b7fe !important;
  color: #212529 !important;
}

/* Fix for Select Options visibility */
select option, select optgroup {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.input-group-text {
  background: #e9ecef !important;
  border: 1px solid #ced4da;
  color: #495057;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: none;
}
.btn-primary { background-color: var(--primary); color: white; }
.btn-success { background-color: var(--success); color: white; }
.btn-danger { background-color: var(--danger); color: white; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/* Navbar */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  z-index: 1000;
}
.navbar-brand { color: var(--primary) !important; font-weight: 800; font-size: 1.5rem; }
.nav-link { color: #555 !important; font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: rgba(13, 110, 253, 0.1); border-radius: 5px; }

.dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.dropdown-item { color: #212529; }
.dropdown-item:hover { background-color: #f8f9fa; color: #1e2125; }

/* Tables */
.table {
  color: var(--dark) !important;
  background: #ffffff !important;
}
.table thead {
  background: #f8f9fa;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}
.table td, .table th {
  border-color: #dee2e6;
  padding: 12px;
}
.table-hover tbody tr:hover {
  background-color: rgba(0,0,0,0.05) !important;
}

/* Helpers */
.rounded-15 { border-radius: 15px; }

/* Login background blobs removed/hidden for clean look */
.shape-blob { display: none; }
.login-wrapper { background: #f0f2f5; }
.login-card { background: #ffffff !important; border: 1px solid #ddd !important; box-shadow: 0 10px 25px rgba(0,0,0,0.1); color: #333; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }
