.btn,
.btn-primary,
.btn-outline-primary,
.btn-outline-secondary,
.btn-light,
.btn-lg,
.btn-sm {
    border-radius: var(--slms-button-radius, 0.5rem) !important;
}
/*
  Global UI polish for Sports League Management System
  - Unifies look across legacy (layout.html) and modern (base.html) templates
  - Adds spacing, typography, tables, cards, forms
  - Provides Bootstrap 4-era class shims for Bootstrap 5 (e.g., .jumbotron)
*/

:root {
  --slms-primary: #0d6efd;
  --slms-bg-soft: #f8f9fa;
  --slms-border: #e9ecef;
  --slms-text-muted: #6c757d;
}

/* Fallback to configured org color when available via inline CSS var injection */
:root { --primary-color: var(--slms-primary); }

/* Typography & spacing */
body {
  background-color: #fff;
  font-family: Inter, system-ui, sans-serif;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: Inter, system-ui, sans-serif;
}
.section-title { margin-bottom: 1rem; }
.content { padding-top: 1rem; padding-bottom: 1rem; }

/* Accessibility helpers */
.visually-hidden-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.visually-hidden-focusable:focus,
.visually-hidden-focusable:focus-visible {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1.5rem;
  overflow: visible;
  opacity: 1;
}

.skip-link {
  background: var(--slms-heading, #111827);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
  z-index: 2000;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body :focus-visible {
  outline: 3px solid var(--slms-accent, #f97316);
  outline-offset: 3px;
  box-shadow: none !important;
}

body :focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

.nav-link.disabled {
  color: var(--slms-text-muted) !important;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-link .nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Layout scaffolding */
.page-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-header .page-title {
  margin: 0;
  font-weight: 600;
}

.page-header .page-subtitle {
  margin: 0;
  color: var(--slms-text-muted);
}

.page-header .page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .page-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Navbar spacing */
.navbar .nav-link { font-weight: 500; }

/* Cards */
.card { border-radius: .5rem; border-color: var(--slms-border); }
.card-header { background-color: var(--slms-bg-soft); }

/* Tables */
.table thead th { border-bottom: 2px solid var(--slms-border); }
.table-hover tbody tr:hover { background-color: rgba(13,110,253,.04); }
.table-responsive { overflow-x: auto; }

/* Forms */
.form-label { font-weight: 500; }
.form-control, .form-select { border-radius: .5rem; }
.input-group-text { background-color: var(--slms-bg-soft); }

/* Buttons */
.btn {
    font-family: inherit;
    border-radius: var(--slms-button-radius, 0.5rem) !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
}
.btn:hover, .btn:focus, .btn:active {
  text-decoration: none !important;
}
.btn-primary {
  background: var(--slms-button-bg, var(--primary-color, #0d6efd));
  border-color: var(--slms-button-border, var(--primary-color, #0d6efd));
  color: var(--slms-button-color, #fff);
  border-radius: var(--slms-button-radius, 0.5rem);
  box-shadow: var(--slms-button-shadow, none);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--slms-button-hover-bg, var(--slms-button-bg, var(--primary-color, #0d6efd)));
  border-color: var(--slms-button-hover-border, var(--slms-button-border, var(--primary-color, #0d6efd)));
  color: var(--slms-button-hover-color, #fff);
}
.btn-outline-primary {
  color: var(--slms-button-outline-color, var(--primary-color, #0d6efd));
  border-color: var(--slms-button-outline-color, var(--primary-color, #0d6efd));
  border-radius: var(--slms-button-radius, 0.5rem);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--slms-button-outline-hover-bg, var(--primary-color, #0d6efd));
  color: var(--slms-button-outline-hover-color, #fff);
  border-color: var(--slms-button-outline-color, var(--primary-color, #0d6efd));
}

/* Badges for game status */
.game-status-badge { font-size: .75rem; padding: .25rem .5rem; }

/* Enhanced match and schedule styling */
.venue-pill {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.match-status-badge {
  font-weight: 500;
  font-size: 0.75rem;
}

.match-row:hover {
  background-color: rgba(13, 110, 253, 0.05);
  transform: translateX(2px);
  transition: all 0.2s ease;
}

.match-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.game-item {
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.game-item:hover {
  background-color: rgba(13, 110, 253, 0.05);
  border-left-color: var(--slms-primary);
}

.game-item[data-status="live"] {
  border-left-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.stat-box {
  padding: 1rem 0;
  border-radius: 0.5rem;
}

.team-name {
  font-weight: 600;
  color: #333;
}

.btn-group .btn {
  border-radius: 0.375rem;
  margin-left: 2px;
}

.btn-group .btn:first-child {
  margin-left: 0;
}

/* Calendar view styling */
.calendar-grid .month-section h5 {
  color: var(--slms-primary);
  border-bottom: 2px solid var(--slms-border);
  padding-bottom: 0.5rem;
}

.calendar-grid .card {
  height: 100%;
  min-height: 150px;
}

.calendar-grid .card-header {
  text-align: center;
  font-weight: 600;
}

/* Filter section styling */
.card .form-label {
  color: #495057;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Quick stats styling */
.stat-box h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-box small {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Enhanced table responsiveness */
@media (max-width: 768px) {
  .match-row .col-md-2,
  .match-row .col-md-6 {
    margin-bottom: 0.5rem;
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .venue-pill {
    font-size: 0.75rem;
    padding: 0.125rem 0.375rem;
  }
}

/* Status-specific styling */
.game-item[data-status="final"] {
  border-left-color: #198754;
}

.game-item[data-status="postponed"] {
  border-left-color: #ffc107;
}

.game-item[data-status="cancelled"] {
  border-left-color: #6c757d;
  opacity: 0.7;
}

/* Loading states */
.spinner-border {
  color: var(--slms-primary);
}

/* Empty states */
.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--slms-text-muted);
}

.empty-state i {
  font-size: 3rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* Player Management CRM Styles */
.stat-card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.avatar-placeholder, .avatar-placeholder-large, .avatar-placeholder-small {
  background-color: var(--slms-bg-soft);
  border: 2px solid var(--slms-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slms-text-muted);
  font-size: 1.2rem;
}

.avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.avatar-placeholder-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.avatar-placeholder-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
}

.team-badge, .team-badge-small {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.team-badge-small {
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
}

.position-pill {
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.position-goalkeeper { background-color: #dc3545; color: white; }
.position-defender { background-color: #198754; color: white; }
.position-midfielder { background-color: #ffc107; color: #212529; }
.position-forward { background-color: #fd7e14; color: white; }

.status-badge {
  font-weight: 500;
  font-size: 0.75rem;
}

.status-active { background-color: #198754 !important; }
.status-injured { background-color: #dc3545 !important; }
.status-suspended { background-color: #ffc107 !important; color: #212529 !important; }
.status-inactive { background-color: #6c757d !important; }
.status-trial { background-color: #0dcaf0 !important; color: #212529 !important; }
.status-loan { background-color: #6f42c1 !important; }

.rating-bar {
  height: 8px;
  background-color: var(--slms-bg-soft);
  border-radius: 4px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc3545 0%, #ffc107 50%, #198754 100%);
  transition: width 0.3s ease;
}

.player-profile-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player-profile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--slms-border);
}

.detail-label {
  font-weight: 500;
  color: var(--slms-text-muted);
  font-size: 0.875rem;
}

.player-list-item {
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.player-list-item:hover {
  background-color: rgba(13, 110, 253, 0.05);
  border-left-color: var(--slms-primary);
}

.photo-preview {
  width: 150px;
  height: 150px;
  border: 2px dashed var(--slms-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--slms-bg-soft);
  color: var(--slms-text-muted);
  margin: 0 auto;
  cursor: pointer;
}

.photo-preview:hover {
  border-color: var(--slms-primary);
  color: var(--slms-primary);
}

.photo-preview i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bulk-actions {
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contract-info {
  font-size: 0.875rem;
}

.performance-section {
  background-color: var(--slms-bg-soft);
  padding: 0.75rem;
  border-radius: 0.5rem;
}

/* Responsive adjustments for player management */
@media (max-width: 768px) {
  .stat-card .card-body {
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    margin-bottom: 0.5rem;
  }

  .player-profile-card .card-body {
    padding: 0.75rem;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-label {
    margin-bottom: 0.25rem;
  }
}

/* Tab content styling */
.nav-tabs .nav-link {
  color: var(--slms-text-muted);
  border: none;
  border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link.active {
  color: var(--slms-primary);
  border-bottom-color: var(--slms-primary);
  background-color: transparent;
}

.nav-tabs .nav-link:hover {
  border-bottom-color: var(--slms-primary);
  color: var(--slms-primary);
}

/* Filter section enhancements */
.collapse.show {
  animation: expandDown 0.3s ease;
}

@keyframes expandDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}

/* Advanced search highlight */
.form-control:focus, .form-select:focus {
  border-color: var(--slms-primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Jumbotron shim (Bootstrap 4 -> 5) */
.jumbotron { background-color: var(--slms-bg-soft); border-radius: .75rem; }
.jumbotron .display-4 { font-weight: 700; }
.jumbotron p.lead { color: var(--slms-text-muted); }

/* Legacy .close button -> style similar to .btn-close */
.close { font-size: 1.25rem; line-height: 1; opacity: .6; }
.close:hover { opacity: 1; }

/* Utility pills */
.venue-pill { background-color: var(--slms-bg-soft); border: 1px solid var(--slms-border); border-radius: 1rem; padding: .25rem .75rem; font-size: .875rem; }

/* Footer */
footer .text-muted { color: var(--slms-text-muted) !important; }

.footer-shell {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  width: 100%;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-title .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

.footer-tagline {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-columns {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.footer-meta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal {
  color: #94a3b8;
  font-size: 0.85rem;
  flex: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: #cbd5e1;
  font-size: 1.25rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
}

/* Default style - simple icons */
.footer-social-default a {
  width: auto;
  height: auto;
  padding: 0.25rem;
}

.footer-social-default a:hover {
  transform: translateY(-2px);
}

/* Circular buttons */
.footer-social-circular a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer-social-circular a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

/* Square buttons */
.footer-social-square a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-social-square a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Minimal style - text only */
.footer-social-minimal a {
  width: auto;
  height: auto;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.footer-social-minimal a i {
  display: none;
}

.footer-social-minimal a::after {
  content: attr(aria-label);
  margin-left: 0;
}

.footer-social-minimal a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-meta {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .navbar-brand img { height: 32px; }
}

/* ========================================
   UX UTILITIES - Loading States & Feedback
   ======================================== */

/* Button Loading State */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.btn-loading .btn-text {
  visibility: hidden;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: btn-spinner 0.75s linear infinite;
}

.btn-loading.btn-sm::after {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: -0.375rem;
  margin-top: -0.375rem;
}

.btn-loading.btn-lg::after {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: -0.625rem;
  margin-top: -0.625rem;
}

@keyframes btn-spinner {
  to { transform: rotate(360deg); }
}

/* Inline Save Indicator */
.save-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.save-indicator.show {
  opacity: 1;
}

.save-indicator.saving {
  color: var(--slms-muted, #6c757d);
}

.save-indicator.saved {
  color: #198754;
}

.save-indicator.error {
  color: #dc3545;
}

/* Skeleton Loading Animation */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 0.25rem;
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-text.skeleton-sm {
  height: 0.75rem;
}

.skeleton-text.skeleton-lg {
  height: 1.25rem;
}

.skeleton-circle {
  border-radius: 50%;
}

.skeleton-row {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.skeleton-row:last-child {
  border-bottom: none;
}

.skeleton-cell {
  flex: 1;
  margin-right: 1rem;
}

.skeleton-cell:last-child {
  margin-right: 0;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Unsaved Changes Indicator */
.form-unsaved-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background-color: #fff3cd;
  color: #856404;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-unsaved-indicator.show {
  opacity: 1;
}

.form-unsaved-indicator i {
  font-size: 0.875rem;
}

/* Form Field States */
.form-control.is-validating {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3e%3ccircle cx='12' cy='12' r='10' stroke-dasharray='31.4' stroke-dashoffset='31.4'%3e%3canimate attributeName='stroke-dashoffset' dur='1s' values='31.4;0' repeatCount='indefinite'/%3e%3c/circle%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

/* Empty State Enhancements */
.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
}

.empty-state-icon {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 1rem;
  display: block;
}

.empty-state-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slms-text, #1f2937);
  margin-bottom: 0.5rem;
}

.empty-state-description {
  color: var(--slms-muted, #6c757d);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Focus Improvements */
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 3px solid var(--slms-accent, #f97316);
  outline-offset: 2px;
}

/* Status Pill Enhancement */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.status-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: currentColor;
}

.status-pill.status-active { color: #198754; background-color: rgba(25, 135, 84, 0.1); }
.status-pill.status-pending { color: #fd7e14; background-color: rgba(253, 126, 20, 0.1); }
.status-pill.status-inactive { color: #6c757d; background-color: rgba(108, 117, 125, 0.1); }
.status-pill.status-error { color: #dc3545; background-color: rgba(220, 53, 69, 0.1); }















