:root {
  --primary: #1e40af;
  --primary-hover: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;
  --accent: #0ea5e9;
  --accent-light: #e0f2fe;
  --success: #10b981;
  --success-light: #ecfdf5;
  --success-border: #a7f3d0;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --danger-border: #fecaca;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --warning-border: #fde68a;
  --dark: #0f172a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  background-color: #f8fafc;
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* NAVBAR */
.navbar-custom {
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  padding: 0.75rem 1rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.3);
}

.brand-text-main {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link-custom {
  color: var(--gray-700) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-custom:hover {
  color: var(--primary) !important;
  background-color: var(--primary-light);
}

.nav-link-custom.active {
  color: var(--primary) !important;
  background-color: var(--primary-light);
  font-weight: 700;
}

.offline-badge {
  background-color: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offline-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* HERO SECTION */
.hero-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0284c7 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(30, 64, 175, 0.25);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.05rem;
  color: #e0e7ff;
  max-width: 650px;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-btn-primary {
  background: #ffffff;
  color: var(--primary);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary:hover {
  background: #f8fafc;
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

/* STAT CARDS */
.stat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 2px;
}

/* QUICK ACTION CARDS */
.action-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
  color: inherit;
}

.action-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.action-card-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.action-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.action-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* CATEGORY CARDS */
.cat-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.cat-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.85rem;
}

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cat-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.cat-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.5;
}

.cat-progress-wrapper {
  margin-bottom: 1rem;
}

.cat-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.progress-custom {
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--gray-100);
  overflow: hidden;
}

.progress-bar-custom {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* QUESTION CARD */
.question-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.q-badge-num {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.q-badge-critical {
  background-color: var(--danger-light);
  color: var(--danger);
  border: 1px solid var(--danger-border);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.btn-bookmark {
  border: 1px solid var(--gray-300);
  background: #ffffff;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}

.btn-bookmark:hover {
  background: var(--warning-light);
  border-color: var(--warning-border);
  color: var(--warning);
}

.btn-bookmark.bookmarked {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #b45309;
}

.question-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.question-img-container {
  text-align: center;
  margin-bottom: 1.5rem;
  background-color: #f8fafc;
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--gray-200);
}

.question-img {
  max-width: 100%;
  max-height: 380px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ANSWERS LIST */
/* ANSWERS ROW (SINGLE-LINE ACROSS ALL DEVICES) */
.answers-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  width: 100% !important;
  margin-bottom: 1.5rem !important;
  align-items: stretch !important;
}

.answer-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 1rem 0.5rem !important;
  border: 2px solid var(--gray-200) !important;
  border-radius: var(--radius-md) !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  user-select: none !important;
  text-align: center !important;
  position: relative !important;
}

.answer-card:hover {
  border-color: var(--primary) !important;
  background-color: #f8fafc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12) !important;
}

.answer-id-badge {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background-color: var(--gray-100) !important;
  color: var(--gray-700) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
  transition: all 0.15s !important;
}

.answer-card:hover .answer-id-badge {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

.answer-text {
  font-size: 1.05rem !important;
  color: var(--gray-800) !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  padding-top: 0 !important;
  width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: center !important;
}

.answer-state-icon {
  position: absolute !important;
  top: 6px !important;
  right: 6px !important;
  margin-left: 0 !important;
  font-size: 1.15rem !important;
  display: none;
}

/* Selected state */
.answer-card.selected {
  border-color: var(--primary) !important;
  background-color: var(--primary-light) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
}

.answer-card.selected .answer-id-badge {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Correct state */
.answer-card.is-correct {
  border-color: var(--success) !important;
  background-color: var(--success-light) !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
}

.answer-card.is-correct .answer-id-badge {
  background-color: var(--success) !important;
  color: #ffffff !important;
}

.answer-card.is-correct .answer-state-icon {
  display: block !important;
  color: var(--success) !important;
}

/* Wrong state */
.answer-card.is-wrong {
  border-color: var(--danger) !important;
  background-color: var(--danger-light) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.answer-card.is-wrong .answer-id-badge {
  background-color: var(--danger) !important;
  color: #ffffff !important;
}

.answer-card.is-wrong .answer-state-icon {
  display: block !important;
  color: var(--danger) !important;
}

/* NAVIGATION BUTTONS ROW (SINGLE-LINE ACROSS ALL DEVICES) */
.quiz-nav-row,
.exam-nav-buttons-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  width: 100% !important;
}

.quiz-nav-row .btn,
.exam-nav-buttons-row .btn {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  padding: 10px 8px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.quiz-nav-row .btn .nav-btn-label,
.exam-nav-buttons-row .btn .nav-btn-label {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* REVIEW ANSWERS ROW (RESULTS & WRONG QUESTIONS) */
.answers-review-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.answer-review-col {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
}

/* EXPLANATION BOX */
.explanation-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 5px solid var(--success);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
  display: none;
}

.explanation-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #166534;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.explanation-content {
  font-size: 0.95rem;
  color: #14532d;
  line-height: 1.55;
  margin-bottom: 0;
}

/* EXAM MATRIX & TIMER */
.exam-header-bar {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.exam-header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timer-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0 18px;
  border-radius: var(--radius-md);
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  box-sizing: border-box;
}

.timer-icon {
  font-size: 1.25rem;
  color: #dc2626 !important;
  line-height: 1;
}

.timer-digits {
  font-family: Consolas, Monaco, monospace;
  font-size: 1.45rem;
  font-weight: 800;
  color: #dc2626 !important;
  letter-spacing: 0.05em;
  line-height: 1;
}

.timer-digits.warning {
  color: #991b1b !important;
  animation: pulse-danger 1s infinite;
}

#btnSubmitExam {
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.exam-header-controls .btn-outline-primary {
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: var(--radius-md);
}

.exam-nav-sidebar {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 20px;
}

.exam-nav-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exam-matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 1.25rem;
}

.matrix-btn {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: #ffffff;
  color: var(--gray-700);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}

/* Exam specifications cards */
.exam-spec-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.exam-spec-val {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 4px;
  margin-bottom: 0;
}

.matrix-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.matrix-btn.current {
  border: 2px solid var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.25);
  font-weight: 800;
}

.matrix-btn.answered {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.matrix-btn.marked::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  background-color: var(--warning);
  border-radius: 50%;
}

.matrix-btn.critical::before {
  content: "!";
  position: absolute;
  bottom: 1px;
  right: 3px;
  font-size: 9px;
  font-weight: 900;
  color: var(--danger);
}

.exam-legend {
  font-size: 0.775rem;
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--gray-200);
  padding-top: 0.85rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

/* RESULTS SCREEN */
.result-hero {
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}

.result-hero.passed {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.result-hero.failed {
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
}

.result-status-title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.result-score-big {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Consolas, Monaco, monospace;
}

/* FOOTER */
.footer-custom {
  margin-top: auto;
  background: #ffffff;
  border-top: 1px solid var(--gray-200);
  padding: 1.75rem 0;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.shortcut-badge {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

/* HEADER ACCOUNT WIDGET */
.header-account-widget {
  background: #f8fafc;
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.header-account-widget:hover {
  background: #f1f5f9;
  border-color: var(--primary-light);
}

.account-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-name {
  font-size: 0.9rem;
  color: var(--gray-800);
}

.header-round-badge {
  font-size: 0.775rem;
  padding: 4px 10px;
}

.header-account-mobile {
  background: #f8fafc !important;
  border: 1px solid var(--gray-200) !important;
}

/* OUT OF ROUNDS MODAL */
#outOfRoundsModal .modal-content {
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
