/* Barton College IT Branding & Custom Styling */

:root {
  --barton-navy: #002D62;
  --barton-navy-hover: #001f44;
  --barton-red: #C8102E;
  --barton-red-hover: #a00c24;
  --barton-gold: #FFC72C;
  --bg-slate: #f8fafc;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-slate);
  color: #1e293b;
}

/* Red and White Stripe Indicator for Departmental - Exam Priority Trolleys */
.exam-priority-stripe {
  background: repeating-linear-gradient(
    -45deg,
    #dc2626,
    #dc2626 12px,
    #ffffff 12px,
    #ffffff 24px
  );
  height: 12px;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.exam-priority-badge {
  background: repeating-linear-gradient(
    -45deg,
    #dc2626,
    #dc2626 8px,
    #ef4444 8px,
    #ef4444 16px
  );
  color: white;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Custom Barton Header Navbar */
.barton-header {
  background-color: var(--barton-navy);
  border-bottom: 4px solid var(--barton-red);
}

.barton-btn-primary {
  background-color: var(--barton-navy);
  color: white;
}
.barton-btn-primary:hover {
  background-color: var(--barton-navy-hover);
}

.barton-btn-accent {
  background-color: var(--barton-red);
  color: white;
}
.barton-btn-accent:hover {
  background-color: var(--barton-red-hover);
}

/* Helpdesk Report Issue Link */
.report-issue-btn {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
}
.report-issue-btn:hover {
  background-color: #fee2e2;
  border-color: #f87171;
  color: #7f1d1d;
}

/* Trolley Color Indicator Badge */
.trolley-color-indicator {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.2);
}
