/* Brand color for consistent theming */
:root {
  --brand-color: #6c63ff;
  --bs-primary: var(--brand-color);
  --bs-primary-rgb: 108, 99, 255;
}

.navbar.bg-primary {
  background: #000 !important;
}

.navbar-brand,
.nav-link,
.navbar-text {
  color: #fff !important;
  transition: color 0.2s ease-in-out;
}

.navbar-brand:hover,
.nav-link:hover,
.navbar-text:hover {
  color: #e0e0ff !important;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1ff 100%);
  min-height: 100vh;
}
.navbar {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card {
  border-radius: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.2);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #fff;
}

/* Display placeholder in uppercase for date inputs */
input[type="date"] {
  text-transform: uppercase;
}

th.numeric,
td.numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

th[draggable="true"] {
  cursor: move;
}

#deposit-table thead th.sortable {
  cursor: pointer;
}

#deposit-table thead th.sortable i {
  margin-left: 4px;
}

#deposit-filters {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #fff;
}

#deposit-table thead th {
  position: sticky;
  top: var(--deposit-filters-height, 0);
  background: #fff;
  z-index: 1010;
}

#deposit-table tbody tr.deposit-row {
  cursor: pointer;
}

#deposit-table tbody tr.deposit-row:focus {
  outline: 3px solid var(--brand-color);
  outline-offset: -3px;
  background-color: rgba(108, 99, 255, 0.1);
}

#deposit-table {
  --bs-table-striped-bg: rgba(0, 0, 0, 0.02);
}

#deposit-table th,
#deposit-table td {
  border: none;
}

#deposit-table tbody tr + tr {
  border-top: 1px solid #e9ecef;
}

.progress-thin {
  height: 2px;
}
