/* =========================================
   Chip Brand Theme — Primary: #C8102E (Red)
   Secondary: #3D3D4E (Dark Slate)
   ========================================= */

body {
  background: #fff !important;
}

/* --- Buttons --- */

.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #C8102E;
  --bs-btn-border-color: #C8102E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a50d25;
  --bs-btn-hover-border-color: #960b21;
  --bs-btn-focus-shadow-rgb: 200, 16, 46;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #960b21;
  --bs-btn-active-border-color: #87091e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #C8102E;
  --bs-btn-disabled-border-color: #C8102E;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3D3D4E;
  --bs-btn-border-color: #3D3D4E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f2f3d;
  --bs-btn-hover-border-color: #292938;
  --bs-btn-focus-shadow-rgb: 61, 61, 78;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #292938;
  --bs-btn-active-border-color: #232330;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3D3D4E;
  --bs-btn-disabled-border-color: #3D3D4E;
}

/* --- Text Colors --- */

.text-info {
  color: #C8102E !important;
}

.text-success {
  color: #3D3D4E !important;
}

/* --- Sidebar --- */

.sidebar-item.selected .sidebar-link {
  background: #C8102E !important;
  color: #fff !important;
}

/* --- Auth wrapper --- */

.auth-wrapper {
  background: #fff !important;
}

/* --- Borders & Accents --- */

.border-left-success {
  border-left: 4px solid #C8102E;
}

/* --- Title bar --- */

.titulo {
  background: #3D3D4E !important;
  color: #fff !important;
}

/* --- Question cards --- */

#container-perguntas > .card {
  border-left: 5px solid #C8102E !important;
}

/* --- Option buttons --- */

.btn-opcao {
  text-align: left;
  margin-bottom: 8px;
  border: 1px solid #ddd;
  transition: all 0.2s;
}

.btn-opcao:hover {
  background-color: #f5f5f5;
  color: #222;
}

.btn-opcao.active {
  background-color: #C8102E !important;
  color: #fff !important;
  border-color: #C8102E;
}