.betting-controls {
  border-top: 2px solid white;
}

.betting-interface {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

/* Left section - Summary table */
.betting-summary-wrapper {
  flex: 0 0 25%;
  min-width: 180px;
}

.betting-summary-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-size: 12px;
}

.betting-summary-table td {
  padding: 4px;
  border: none;
  text-align: left;
}

.summary-label {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  width: 120px;
}

.summary-value {
  color: #ff6b35;
  font-weight: 600;
  text-align: right;
  min-width: 30px;
}

.betting-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  padding-top: 10px !important;
  text-align: left;
}

/* Middle section - Input controls */
.betting-inputs-section {
  flex: 0 0 35%;
  display: flex;
  gap: 15px;
  align-items: flex-end;
  min-width: 200px;
}

.bet-amount-group,
.multiplier-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
}

.amount-input-wrapper,
.multiplier-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid white;
  height: 29px;
  overflow: hidden;
}

.amount-control-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.amount-control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.amount-control-btn:last-child {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.bet-amount-input,
.multiplier-input {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  width: 60px;
  outline: none;
}

.bet-amount-input::-webkit-outer-spin-button,
.bet-amount-input::-webkit-inner-spin-button,
.multiplier-input::-webkit-outer-spin-button,
.multiplier-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.multiplier-input {
  opacity: 0.6;
}

/* Right section - Action buttons */
.betting-actions-section {
  flex: 0 0 40%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.add-to-bet-slip-btn,
.instant-bet-btn {
  align-items: center;
  appearance: button;
  background-color: rgb(79, 79, 90);
  background-image: none;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: rgb(204, 204, 204);
  cursor: pointer;
  display: inline-flex;
  font-family: Roboto, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 33px;
  justify-content: center;
  line-height: 16.1px;
  margin: 0;
  opacity: 0.8;
  outline: none;
  overflow: visible;
  padding: 8px 16px;
  text-align: center;
  text-transform: none;
  flex: 1;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.add-to-bet-slip-btn:hover,
.instant-bet-btn:hover {
  opacity: 1;
  background-color: rgb(89, 89, 100);
}

/* Ensure icons are fully visible */
.add-to-bet-slip-btn svg,
.instant-bet-btn svg {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .betting-interface {
    flex-direction: column;
    gap: 20px;
  }

  .betting-summary-wrapper,
  .betting-inputs-section,
  .betting-actions-section {
    flex: 1 1 100%;
  }

  .betting-inputs-section {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .betting-actions-section {
    flex-direction: column;
    gap: 10px;
  }

  .add-to-bet-slip-btn,
  .instant-bet-btn {
    justify-content: center;
    max-width: none;
  }
}

/* Betting History Section */
.betting-history-container {
  width: 100%;
  max-width: none;
  border-radius: 8px;
  color: rgb(204, 204, 204);
  margin: 16px 0 12px 0;
  box-shadow: 0px 0px 10px -5px;
  background-color: rgb(58, 58, 68);
  padding: 20px 0;
  overflow-y: auto;
}

.betting-history-button {
  background-color: rgb(130, 168, 249);
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  display: block;
  font-family: Roboto, "Microsoft YaHei", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 36px;
  line-height: 16px;
  margin: 0 auto 20px auto;
  padding: 10px;
  text-align: center;
  text-size-adjust: 100%;
  unicode-bidi: isolate;
  width: 200px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.betting-history-button:hover {
  background-color: rgb(110, 148, 229);
  transform: translateY(-1px);
}

.betting-history-content {
  width: 100%;
  max-width: none;
  background-color: rgb(58, 58, 68);
  border-radius: 0 0 8px 8px;
  padding: 0;
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.betting-history-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  table-layout: fixed;
}

.betting-history-thead th {
  background-color: rgb(64, 65, 75);
  color: rgb(187, 187, 187);
  padding: 8px 4px;
  font-weight: 600;
  font-size: 12px;
  border: none;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2;
}

.betting-history-thead th:nth-child(1) {
  width: 70px;
}

.betting-history-thead th:nth-child(2) {
  width: 60px;
}

.betting-history-thead th:nth-child(3) {
  width: 80px;
}

.betting-history-thead th:nth-child(4) {
  width: 60px;
}

.betting-history-thead th:nth-child(5) {
  width: 60px;
}

.betting-history-thead th:nth-child(6) {
  width: 60px;
}

.betting-history-thead th:nth-child(7) {
  width: 70px;
}

.betting-history-thead th:nth-child(8) {
  width: 80px;
}

.betting-history-thead th:nth-child(9) {
  width: 50px;
}

.betting-history-thead th.text-left {
  text-align: left;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.betting-history-row {
  border: none;
}

.betting-history-row td {
  padding: 0 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  border: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.betting-history-row td:nth-child(1) {
  width: 70px;
}

.betting-history-row td:nth-child(2) {
  width: 60px;
}

.betting-history-row td:nth-child(3) {
  width: 80px;
}

.betting-history-row td:nth-child(4) {
  width: 60px;
}

.betting-history-row td:nth-child(5) {
  width: 60px;
}

.betting-history-row td:nth-child(6) {
  width: 60px;
}

.betting-history-row td:nth-child(7) {
  width: 70px;
}

.betting-history-row td:nth-child(8) {
  width: 80px;
}

.betting-history-row td:nth-child(9) {
  width: 50px;
}

.betting-history-row td:last-child {
  border-right: none;
}

/* .betting-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  min-width: 80px;
}

.betting-status.pending {
  background: rgba(249, 190, 24, 0.2);
  color: #f9be18;
  border: 1px solid rgba(249, 190, 24, 0.3);
}

.betting-status.win {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.betting-status.lose {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
} */

.game-type {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.numbers-display {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  font-family: monospace;
}

.numbers-display:hover {
  color: #fefefe;
}

.view-details-btn {
  color: rgba(92, 104, 202, 0.8);
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.view-details-btn:hover {
  transform: translateY(-1px);
}

/* Responsive adjustments for betting history */
@media (max-width: 768px) {
  .betting-history-container {
    margin: 10px;
    margin-left: 10px;
    align-items: stretch;
  }

  .betting-history-button {
    width: 100%;
    margin: 0 0 0 0;
  }

  .betting-history-content {
    width: 100%;
    max-width: none;
  }

  .betting-history-table {
    font-size: 12px;
  }

  .betting-history-thead th,
  .betting-history-row td {
    padding: 8px 6px;
    font-size: 11px;
  }

  .numbers-display {
    max-width: 80px;
  }

  .view-details-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
}

/* Betting Confirmation Modal Styles */
.betting-modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 500px !important;
  width: auto !important;
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
}

.modal-container {
  position: relative;
  background: rgb(64, 65, 75);
  border-radius: 12px;
  width: 444px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Pro header for details modal */
.modal-header-pro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px 72px; /* leave space for blue stripe */
  background: linear-gradient(90deg, rgba(92,104,202,0.2) 0%, rgba(92,104,202,0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-header-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-titles .lottery-title {
  margin: 0;
}

.ticket-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.modal-close-btn {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 22px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .2s ease, transform .1s ease;
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.modal-blue-stripe {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: rgb(92, 104, 202);
}

.confirmation-table {
  width: calc(100% - 50px);
  border-collapse: collapse;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: rgb(204, 204, 204);
  margin: 0;
  margin-left: 50px;
  padding: 20px;
  padding-left: 80px;
  box-sizing: border-box;
}

/* New details layout */
.details-body {
  width: calc(100% - 50px);
  margin-left: 50px;
  padding: 16px 20px 8px 80px;
  box-sizing: border-box;
  color: rgb(204,204,204);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.details-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}

.details-summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.details-ticket {
  font-weight: 700;
  font-size: 14px;
}

.details-date {
  font-size: 12px;
  opacity: 0.9;
}

.details-status-wrap .status-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.detail-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.detail-label {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
}

.detail-numbers .numbers-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.number-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #e6e7ff;
  background: rgba(92,104,202,0.15);
  border: 1px solid rgba(92,104,202,0.35);
}

.details-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.details-total strong {
  font-size: 16px;
}

.confirmation-table td {
  padding: 8px 20px;
  border: none;
  vertical-align: top;
  line-height: 1.4;
}

.confirmation-table td:first-child {
  width: 160px;
  color: rgba(255,255,255,0.85);
}

.confirmation-table tbody tr:nth-child(odd) {
  background: transparent;
}

.confirmation-table tbody tr:nth-child(even) {
  background: rgb(58, 58, 68);
}

.lottery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.lottery-title {
  font-size: 16px;
  font-weight: 700;
  color: rgb(204, 204, 204);
  margin: 0;
}

.lottery-header .bold {
  font-size: 12px;
  font-weight: 600;
  color: rgb(204, 204, 204);
}

.confirmation-table .bold {
  font-weight: 600;
  color: rgb(204, 204, 204);
}

.confirmation-table .total-amount {
  font-weight: 700;
  color: rgb(204, 204, 204);
  text-align: right;
}

.total-summary {
  font-weight: 700;
  font-size: 15px;
  color: rgb(204, 204, 204);
  text-align: right;
  padding: 15px 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Status badges */
.status-badge {
  font-weight: 600;
}
.status-badge[data-status="pending"], .status-badge.pending {
  color: #f0c330;
}
.status-badge[data-status="win"], .status-badge.win {
  color: #22c55e;
}
.status-badge[data-status="lose"], .status-badge.lose {
  color: #ef4444;
}

.modal-actions {
  display: flex;
  justify-content: center;
  padding: 15px 0 10px 0;
}

.modal-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 60px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.confirm-btn {
  max-width: 170px;
  width: 100%;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  background-color: rgb(0, 161, 236);
}

.confirm-btn:hover {
  background-color: rgb(0, 145, 212);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 161, 236, 0.3);
}

.cancel-btn {
  max-width: 170px;
  width: 100%;
  background-color: rgb(204, 204, 204);
  color: rgb(51, 51, 51);
  text-transform: uppercase;
}

.cancel-btn:hover {
  background-color: rgb(184, 184, 184);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 204, 204, 0.3);
}

/* Selected numbers styling */
#modal-selected-numbers {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 600;
  color: rgb(204, 204, 204);
  padding: 4px 20px !important;
  margin: 5px 0;
}

/* Responsive adjustments for betting modal */
@media (max-width: 768px) {
  .modal-container {
    min-width: 280px;
    margin: 20px;
  }

  .modal-header-pro {
    padding: 12px 12px 10px 60px;
  }

  .confirmation-table {
    font-size: 13px;
    padding: 15px;
    padding-left: 65px;
  }

  .details-body {
    width: calc(100% - 40px);
    margin-left: 40px;
    padding: 12px 15px 6px 60px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .confirmation-table td {
    padding: 6px 15px;
  }

  .lottery-title {
    font-size: 16px;
  }

  .modal-btn {
    padding: 8px 20px;
    font-size: 13px;
    min-width: 80px;
  }

  .total-summary {
    font-size: 14px;
    padding: 12px 15px !important;
  }

  .modal-blue-stripe {
    width: 40px;
  }
}

/* Success Modal Styles */
.success-modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 400px !important;
  width: 90% !important;
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
}

.MuiPaper-root.MuiDialog-paper.jss2 {
  background: white;
  border-radius: 4px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  margin: 0;
  width: 300px;
}

.success-modal-content{
  border-radius: 4px !important;
}

.MuiPaper-root.MuiAlert-root.jss4.MuiAlert-standardSuccess {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(76, 175, 80, 0.1);
  padding: 16px;
  border-radius: 4px !important;
  margin: 0;
}

.MuiAlert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0;
}

.MuiAlert-icon .MuiSvgIcon-root {
  width: 24px;
  height: 24px;
  fill: #4caf50;
}

.MuiAlert-message {
  flex: 1;
  padding: 0;
}

.MuiTypography-root.MuiAlertTitle-root.jss5 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}

.MuiAlert-message {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.MuiDialogActions-root.MuiDialogActions-spacing {
  display: flex;
  justify-content: flex-end;
  background: white;
  margin: 0;
}

.sc-oc7jpj-0.dnrKLX.sc-1kjhckj-0.byakPK {
  background: transparent;
  border: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: none;
  font-family: 'Inter', sans-serif;
}

.sc-oc7jpj-0.dnrKLX.sc-1kjhckj-0.byakPK:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #333;
}

/* Responsive adjustments for success modal */
@media (max-width: 768px) {
  .success-modal-content {
    width: 95% !important;
    max-width: 350px !important;
  }
  
  .MuiDialogContent-root.jss3 {
    padding: 20px 20px 12px 20px;
  }
  
  .MuiDialogActions-root.MuiDialogActions-spacing {
    padding: 6px 20px 12px 20px;
  }
  
  .MuiTypography-root.MuiAlertTitle-root.jss5 {
    font-size: 15px;
  }
  
  .MuiAlert-message {
    font-size: 13px;
  }
}

/* ========================= */
/* Betting History Pagination */
/* ========================= */
.betting-history-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 4px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.0) 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  flex-wrap: wrap;
}

.pagination-left,
.pagination-middle,
.pagination-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-left {
  flex: 1 1 auto;
  min-width: 160px;
}

.pagination-right {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.8;
  white-space: nowrap;
}

.pagination-label {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .3px;
}

.page-size-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e6e7ff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: border-color .2s, background-color .2s;
}

.page-size-select:hover {
  border-color: rgba(255,255,255,0.35);
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  padding: 2px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.page-btn,
.page-number,
.ellipsis {
  min-width: 32px;
  height: 30px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #d5d7f5;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: color .15s, background-color .15s, border-color .15s, transform .15s;
  user-select: none;
}

.page-btn:hover:not(:disabled),
.page-number:hover:not(.active):not(:disabled) {
  background: rgba(92,104,202,0.15);
  border-color: rgba(92,104,202,0.35);
  color: #ffffff;
}

.page-number.active {
  background: linear-gradient(135deg, rgba(92,104,202,0.85) 0%, rgba(118,130,228,0.85) 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 2px 6px rgba(92,104,202,0.4);
  cursor: default;
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ellipsis {
  cursor: default;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

.pagination-info {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* Compact adjustments for very narrow widths */
@media (max-width: 640px) {
  .betting-history-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pagination-left {
    width: 100%;
    justify-content: flex-start;
  }
  .pagination-middle {
    order: 3;
    flex-wrap: wrap;
  }
  .pagination-right {
    width: 100%;
    justify-content: flex-end;
    order: 2;
  }
  .pagination-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* Fancy focus ring for accessibility */
.page-btn:focus-visible,
.page-number:focus-visible,
.page-size-select:focus-visible {
  outline: 2px solid rgba(118,130,228,0.9);
  outline-offset: 2px;
}

/* Subtle press effect */
.page-btn:active:not(:disabled),
.page-number:active:not(.active):not(:disabled) {
  transform: translateY(1px);
}
