/* Core Variables */
:root {
  --archangel-blue: #2999d2;
  --archangel-blue-hover: #1e7ba8;
  --archangel-orange: #ff751f;
  --archangel-dark: #143954;
  --bg-light: #f8f9fa;
}

body {
  background-color: var(--bg-light);
  font-family: system-ui, -apple-system, sans-serif;
}

/* Brand Utilities */
.text-brand-dark { color: var(--archangel-dark) !important; }
.text-brand-orange { color: var(--archangel-orange) !important; }

.btn-brand {
  background-color: var(--archangel-blue);
  color: white;
  border: none;
  transition: background-color 0.2s;
}

.btn-brand:hover, .btn-brand:focus, .btn-brand:active {
  background-color: var(--archangel-blue-hover);
  color: white;
}

.btn-brand:disabled {
  background-color: #9cd0eb;
  color: white;
}

/* Custom DataTables Adjustments */
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0 !important;
}

/* Timeline specific styling */
.timeline-container {
  border-left: 2px solid #dee2e6;
  margin-left: 10px;
  padding-left: 15px;
}
