/* ===== BOXTOTO PAGE STYLES ===== */
/* Specific styles for BoxToto functionality */

/* ===== PAGE HEADER ===== */
.page-header {
  padding: var(--space-8) 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-6);
  color: var(--white);
}

.page-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
  color: var(--white) !important;
}

.page-subtitle {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  margin-bottom: 0;
}

/* ===== NAVIGATION TABS ===== */
.nav-pills .nav-link {
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-medium);
  transition: var(--transition-all);
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
}

.nav-pills .nav-link:hover {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

.nav-pills .nav-link.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ===== MATCH CARDS ===== */
.match-info {
  flex: 1;
}

.match-teams {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.match-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.match-league {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.match-odds {
  min-width: 200px;
}

.odds-btn {
  transition: var(--transition-all);
  position: relative;
}

.odds-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.odds-btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.odds-btn small {
  font-size: 10px;
  font-weight: var(--font-weight-bold);
}

.odds-btn strong {
  font-size: var(--font-size-sm);
  display: block;
  margin-top: 2px;
}

/* ===== BADGES ===== */
.badge-primary {
  background: var(--primary-color);
  color: var(--white);
}

.badge-success {
  background: var(--accent-success);
  color: var(--white);
}

.badge-warning {
  background: var(--accent-warning);
  color: var(--text-primary);
}

.badge-danger {
  background: var(--accent-danger);
  color: var(--white);
}

.badge-secondary {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}

/* ===== COUPON BUILDER ===== */
.coupon-builder {
  position: sticky;
  top: 100px;
}

.selected-match {
  background: var(--bg-tertiary);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.selected-match small {
  color: var(--text-muted);
  font-size: 10px;
}

.coupon-summary {
  background: var(--bg-secondary);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* ===== COUPON CARDS ===== */
.coupon-matches {
  border-left: 3px solid var(--primary-color);
  padding-left: var(--space-3);
}

.match-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}

.coupon-summary {
  text-align: right;
}

.coupon-summary > div {
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}

/* ===== RESULT CARDS ===== */
.result-outcome {
  padding: var(--space-2);
}

.outcome-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
}

.final-odds {
  background: var(--bg-tertiary);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.odds-display {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-top: var(--space-1);
}

/* ===== STATISTICS ===== */
.stat-item {
  background: var(--bg-tertiary);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-all);
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-value {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  font-weight: var(--font-weight-medium);
}

/* ===== LEAGUE ITEMS ===== */
.league-item {
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: var(--transition-all);
  cursor: pointer;
}

.league-item:hover {
  background: var(--bg-tertiary);
}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.form-select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.form-select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* ===== LOADING STATES ===== */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-light);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .page-title {
    font-size: var(--font-size-3xl);
  }

  .match-odds {
    margin-top: var(--space-3);
    min-width: auto;
  }

  .odds-btn {
    padding: var(--space-2);
  }

  .coupon-builder {
    position: static;
    margin-top: var(--space-4);
  }

  .nav-pills {
    flex-direction: column;
  }

  .nav-pills .nav-link {
    margin-bottom: var(--space-2);
  }
}

@media (max-width: 576px) {
  .match-teams {
    font-size: var(--font-size-base);
  }

  .match-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }

  .stat-value {
    font-size: var(--font-size-xl);
  }

  .filter-bar .row > div {
    margin-bottom: var(--space-3);
  }
}

/* ===== DARK THEME ENHANCEMENTS ===== */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.card-header {
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.card-title {
  color: var(--text-primary) !important;
  margin-bottom: 0;
}

.card-body {
  color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
.match-card {
  transition: var(--transition-all);
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.odds-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ===== BETTING FORM ===== */
.form-control {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius-md);
}

.form-control:focus {
  background: var(--bg-tertiary);
  border-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.form-control::placeholder {
  color: var(--text-muted);
}

/* ===== BOXTOTO TABLE STYLES ===== */
.modal-xl {
  max-width: 1200px;
}

.boxtoto-table {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.boxtoto-table th,
.boxtoto-table td {
  vertical-align: middle;
  text-align: center;
  padding: 0.5rem 0.25rem;
  border: 1px solid var(--border-light);
}

.boxtoto-table th {
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid #4b5563;
  position: relative;
  overflow: hidden;
}

.boxtoto-table th::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.boxtoto-table th:hover::before {
  left: 100%;
}

.boxtoto-table tbody tr {
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08) 0%,
    rgba(124, 58, 237, 0.08) 50%,
    rgba(236, 72, 153, 0.08) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

.boxtoto-table .match-teams {
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  background: linear-gradient(
    135deg,
    #4f46e5 0%,
    #7c3aed 50%,
    #ec4899 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  transition: all 0.3s ease;
}

.boxtoto-table tbody td {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover td {
  background-color: var(--primary-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.boxtoto-table tbody tr:hover .match-teams {
  background: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 50%,
    #f472b6 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700;
  transform: scale(1.02);
}

.boxtoto-table tbody .match-teams {
  background: linear-gradient(
    135deg,
    #4f46e5 0%,
    #7c3aed 50%,
    #ec4899 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.boxtoto-table tbody td.match-teams {
  background-color: var(--bg-secondary) !important;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  position: relative;
}

.boxtoto-table tbody td.match-teams::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(124, 58, 237, 0.1) 50%,
    rgba(236, 72, 153, 0.1) 100%
  );
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.boxtoto-table tbody tr:hover td.match-teams::before {
  opacity: 1;
}

.boxtoto-table .match-date {
  font-size: 0.7rem;
  color: var(--text-muted) !important;
}

/* Percentage cells */
.boxtoto-table .percent-cell {
  font-size: 0.7rem;
  font-weight: 500;
}

.boxtoto-table .percent-1 {
  color: var(--accent-success) !important;
}
.boxtoto-table .percent-x {
  color: var(--accent-warning) !important;
}
.boxtoto-table .percent-2 {
  color: var(--accent-danger) !important;
}

/* Prediction column (single column instead of A,B,C,D) */
.boxtoto-table .prediction-column {
  background-color: var(--bg-tertiary);
  min-width: 120px;
}

/* Checkbox styling */
.boxtoto-checkbox {
  width: 18px;
  height: 18px;
  margin: 0 4px;
  cursor: pointer;
  accent-color: var(--primary-color);
  transition: all 0.2s ease;
}

.boxtoto-checkbox:hover {
  transform: scale(1.1);
}

.boxtoto-checkbox:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.boxtoto-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Quick selection buttons */
.quick-select-buttons {
  padding: 1rem;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-light);
}

.quick-select-buttons .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Bulletin Cards */
.bulletin-card {
  cursor: pointer;
  transition: var(--transition-all);
  border: 2px solid transparent;
}

.bulletin-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.bulletin-info h5 {
  color: var(--text-primary);
  font-weight: 700;
}

.bulletin-meta .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.bulletin-stats span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.bulletin-prize {
  text-align: right;
}

.prize-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-warning);
}

.prize-label {
  font-size: 0.85rem;
}

/* Responsive Design for BoxToto Table */
@media (max-width: 768px) {
  .modal-xl {
    max-width: 95%;
  }

  .boxtoto-table {
    font-size: 0.7rem;
  }

  .boxtoto-table th,
  .boxtoto-table td {
    padding: 0.25rem 0.1rem;
  }

  .quick-select-buttons .btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 576px) {
  .boxtoto-table {
    font-size: 0.6rem;
  }

  .boxtoto-checkbox {
    width: 14px;
    height: 14px;
  }
}

/* ===== SUCCESS/ERROR STATES ===== */
.text-success {
  color: var(--accent-success) !important;
}

.text-danger {
  color: var(--accent-danger) !important;
}

.text-warning {
  color: var(--accent-warning) !important;
}

.text-info {
  color: var(--accent-info) !important;
}

/* ===== SCROLLBAR STYLING ===== */
.tab-content {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-tertiary);
}

.tab-content::-webkit-scrollbar {
  width: 6px;
}

.tab-content::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
}

.tab-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-sm);
}

.tab-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== ENHANCED TEAM DISPLAY ===== */
.match-teams-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.team-name {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.team-separator {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  align-self: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover .team-name {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  transform: scale(1.02);
  text-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.boxtoto-table tbody tr:hover .team-separator {
  color: var(--primary-color);
  opacity: 1;
  transform: scale(1.1);
}

/* ===== ENHANCED PERCENTAGE CELLS ===== */
.boxtoto-table .percent-cell {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem;
}

.boxtoto-table .percent-1 {
  color: #10b981 !important;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.1) 0%,
    rgba(16, 185, 129, 0.2) 100%
  );
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.boxtoto-table .percent-x {
  color: #f59e0b !important;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(245, 158, 11, 0.2) 100%
  );
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.boxtoto-table .percent-2 {
  color: #ef4444 !important;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(239, 68, 68, 0.2) 100%
  );
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(239, 68, 68, 0.3);
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover .percent-1 {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2) 0%,
    rgba(16, 185, 129, 0.3) 100%
  );
  transform: scale(1.05);
}

.boxtoto-table tbody tr:hover .percent-x {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(245, 158, 11, 0.3) 100%
  );
  transform: scale(1.05);
}

.boxtoto-table tbody tr:hover .percent-2 {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2) 0%,
    rgba(239, 68, 68, 0.3) 100%
  );
  transform: scale(1.05);
}

/* ===== ENHANCED PREDICTION COLUMN ===== */
.boxtoto-table .prediction-column {
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  min-width: 120px;
  padding: 0.75rem 0.5rem;
  border-radius: 0.5rem;
  position: relative;
}

.boxtoto-table .prediction-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.05) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.boxtoto-table tbody tr:hover .prediction-column::before {
  opacity: 1;
}

/* ===== ENHANCED CHECKBOX STYLING ===== */
.boxtoto-checkbox {
  width: 20px;
  height: 20px;
  margin: 0 6px;
  cursor: pointer;
  accent-color: var(--primary-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-light);
  border-radius: 0.375rem;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  position: relative;
}

.boxtoto-checkbox:hover {
  transform: scale(1.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.boxtoto-checkbox:checked {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

.boxtoto-checkbox:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
}

/* ===== ENHANCED NUMBER CELL ===== */
.boxtoto-table .fw-bold {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover .fw-bold {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

/* ===== ENHANCED TABLE ROW ANIMATIONS ===== */
.boxtoto-table tbody tr {
  position: relative;
  overflow: hidden;
}

.boxtoto-table tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(79, 70, 229, 0.1),
    rgba(124, 58, 237, 0.1),
    rgba(236, 72, 153, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 0;
}

.boxtoto-table tbody tr:hover::before {
  left: 100%;
}

/* ===== ENHANCED MATCH DATE ===== */
.boxtoto-table .match-date {
  font-size: 0.75rem;
  color: var(--text-secondary) !important;
  font-weight: 500;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.boxtoto-table tbody tr:hover .match-date {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.2) 0%,
    rgba(124, 58, 237, 0.2) 100%
  );
  transform: scale(1.02);
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 0.25rem;
}

.pagination .page-item .page-link {
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    min-width: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    pointer-events: none;
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.pagination .page-item .page-link:hover:not(.disabled) {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Loading State */
.pagination-loading {
    text-align: center;
    padding: 1rem;
    color: var(--text-muted);
}

/* Responsive Pagination */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination .page-item .page-link {
        padding: 0.4rem 0.8rem;
        min-width: 2rem;
        font-size: 0.9rem;
    }
}
