/* Custom Bootstrap Overrides */
/* Example for WebKit-based browsers */
html {
  overflow-y: scroll !important;
  
}

html::-webkit-scrollbar-track {
  background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 12px;
  border: 3px solid #f1f1f1;
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}


/* Root Variables */
:root {
  --bs-primary: #003366;
  --bs-secondary: #FFC700;
  --bs-secondary-light: hsl(48, 100%, 96%); /* lighter */
  --bs-success: #28a745;
  --bs-info: #17a2b8;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #343a40;

  /* Text Colors */
  --bs-primary-text: #003366;
  --bs-secondary-text: #FFC700;
  
  /* Font weight variables */
  --custom-font-weight: 600;
  --footer-font-weight: 400;

    --gold: #FFD700;
    --dark-gold: #B8860B;


  /* Additional colors from bgfinalv3.css */
  --blue: #003366;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #fff176;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #f2bb05;
  --gray-dark: #343a40;
  --primary: #003366;
  --secondary: #f2bb05;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #fff176;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1500px;
  --font-family-sans-serif: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.btn-gold {
  background-color: var(--gold);
  border-color: var(--dark-gold);
  color: #000;
}
.btn-gold:hover {
  background-color: var(--dark-gold);
  border-color: var(--dark-gold);
  color: #fff;
}
.blur-image-1 {
  filter: blur(2px); /* Slight blur */
}

.blur-image-2 {
  filter: blur(4px); /* Moderate blur */
}

.blur-image-3 {
  filter: blur(6px); /* Noticeable blur */
}

.blur-image-4 {
  filter: blur(8px); /* Heavy blur */
}

.blur-image-5 {
  filter: blur(10px); /* Maximum blur */
}


html, body {
  overflow: auto;
}

/* Custom XXL Container Size */
@media (min-width: 1400px) {
  .container-xxl {
    max-width: var(--breakpoint-xxl);
  }
  .container {
    max-width: var(--breakpoint-xxl);
  }
}


img.rounded-circle {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}


/* Typography Adjustments */
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.1rem;
  
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: #000d1a;
  text-decoration: underline;
}

p, li {
  font-size: 1.1rem;
  font-weight: var(--custom-font-weight);
}

/* Custom class for condensed uppercase text */
.condensed-uppercase {
  text-transform: uppercase;      /* Uppercase text */
  font-stretch: condensed;        /* Condensed width */
  letter-spacing: 0.05em;         /* Adjust letter spacing as needed */
  font-weight: 600;               /* Slightly bolder font */
}

/* Override Bootstrap button colors */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  font-weight: var(--custom-font-weight);
}

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  font-weight: var(--custom-font-weight);
}

/* Additional custom button styles */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #00294c; /* Slightly darker navy */
  border-color: #00294c;
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: #e6b000; /* Slightly darker gold */
  border-color: #e6b000;
}

/* Override link button colors */
.btn-link {
  color: var(--bs-primary);
  font-weight: var(--custom-font-weight);
}

.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: var(--bs-secondary);
}

/* Text color adjustments */
a, h1, h2, h3, h4, h5, h6 {
  color: var(--bs-primary-text);
}

a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6 { 
  color: var(--bs-secondary-text); 
}

/* Background color adjustments */
.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

/* Additional classes for consistency */
.text-primary-hover:hover {
  color: var(--bs-primary) !important;
}

.text-secondary-hover:hover {
  color: var(--bs-secondary) !important;
}

/* Footer specific font weight */
footer {
  font-size: 70%;  
  font-weight: var(--footer-font-weight);
}

/* Additional styles from bgfinalv3.css */

/* Form Controls */
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}

.form-control::placeholder {
  color: var(--secondary);
}

/* Tables */
.table-primary {
  background-color: #b8c6d4;
  border-color: #7a95af;
}

.table-secondary {
  background-color: #fbecb9;
  border-color: #f8dc7d;
}

.table-success {
  background-color: #c3e6cb;
  border-color: #8fd19e;
}

.table-info {
  background-color: #bee5eb;
  border-color: #86cfda;
}

.table-warning {
  background-color: #fffbd9;
  border-color: #fff8b8;
}

.table-danger {
  background-color: #f5c6cb;
  border-color: #ed969e;
}

.table-light {
  background-color: #fdfdfe;
  border-color: #fbfcfc;
}

.table-dark {
  background-color: #c6c8ca;
  border-color: #95999c;
}







.content-block {
border: 3px solid var(--bs-primary);
border-radius: 5px;
padding: 15px;
margin-bottom: 20px;
background-color: #fafafa;
text-align: center;      
transition: transform 0.4s;
}
.content-block:hover {
transform: scale(1.05);
background-color: #eee; /* A lighter shade for the hover effect */
transition: background-color 0.3s ease; /* Smooth transition effect */
}
.content-block .bi {
font-size: 6rem;
color:  var(--bs-secondary);
margin-bottom: 15px;
}
.content-block h2 {
font-size: 2rem;
margin-bottom: 15px;
font-weight: 700;
}
.content-block p {
font-size: 1.2rem;
}
.content-block .more-link {
display: block;
text-align: right;
font-weight: bold;
margin-top: 10px;
}
.content-panel {
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
background-color: #f8f9fa;
}
.content-panel.h3 {
font-size: 1.5rem;
margin-bottom: 15px;
}
.content-panel .more-link {
display: block;
text-align: right;
font-weight: bold;
margin-top: 10px;
}

@media (max-width: 768px) {
.content-block, .content-panel {
margin-bottom: 15px;
}
}


.main-content {
  min-height: calc(100vh - 435px);
  padding: 1rem;
  background: #f8f9fa;
}


@media (min-width: 992px) {
  .main-content {
      display: flex;
      align-items: center;
      justify-content: center;
  }
}

.content-panel {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  }
  .content-panel h3 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
  }
  .summary {
  font-size: 1.1em;
  }
  .content-panel a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  }

/* Subtle button styles - Added 2025-06-22 */
.btn-primary-subtle {
  color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.1);
  border-color: rgba(13, 110, 253, 0.1);
}

.btn-primary-subtle:hover {
  color: #0a58ca;
  background-color: rgba(13, 110, 253, 0.2);
  border-color: rgba(13, 110, 253, 0.2);
}

.btn-primary-subtle:focus,
.btn-primary-subtle:active {
  color: #0a58ca;
  background-color: rgba(13, 110, 253, 0.25);
  border-color: rgba(13, 110, 253, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.btn-primary-subtle:disabled {
  color: #6c757d;
  background-color: rgba(108, 117, 125, 0.1);
  border-color: rgba(108, 117, 125, 0.1);
}


/* Content Header Dark - Gradient Background Section */
.content-header-dark {
  background: linear-gradient(135deg, #131c35 0%, #0f0f0f 50%, #1a1a2e 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated background effect */
.content-header-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: content-header-pulse 4s ease-in-out infinite;
}

@keyframes content-header-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* Text elements inside content-header-dark */
.content-header-dark h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.5px;
}

.content-header-dark h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.content-header-dark h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.content-header-dark p,
.content-header-dark .lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 1;
}

/* Gold highlight text */
.content-header-dark .highlight {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Size variants */
.content-header-dark.compact {
  padding: 3rem 0;
}

.content-header-dark.large {
  padding: 6rem 0;
}

/* Stats display within header */
.content-header-dark .stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.content-header-dark .stat-item {
  text-align: center;
}

.content-header-dark .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  color: #FFD700;
}

.content-header-dark .stat-label {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .content-header-dark h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-dark h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-dark h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-dark p,
  .content-header-dark .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .content-header-dark {
    padding: 1.5rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  
  .content-header-dark.compact {
    padding: 1rem 0;
  }
  
  .content-header-dark.large {
    padding: 2rem 0;
  }
  
  .content-header-dark .stats {
    gap: 1.5rem;
    margin: 1rem 0;
  }
  
  .content-header-dark .stat-number {
    font-size: 1.75rem;
  }
  
  /* Remove rounded corners when search bar follows */
  .content-header-dark.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .content-header-dark h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-dark h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-dark h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-dark p,
  .content-header-dark .lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .content-header-dark {
    padding: 1rem 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  
  .content-header-dark.compact {
    padding: 0.75rem 0;
  }
  
  .content-header-dark.large {
    padding: 1.5rem 0;
  }
  
  .content-header-dark .stats {
    gap: 1rem;
    margin: 0.75rem 0;
  }
  
  .content-header-dark .stat-number {
    font-size: 1.5rem;
  }
  
  .content-header-dark .stat-label {
    font-size: 0.875rem;
  }
  
  /* Remove rounded corners when search bar follows */
  .content-header-dark.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* Content Header Admin - Red Gradient Background Section */
.content-header-admin {
  background: linear-gradient(135deg, #351313 0%, #0f0f0f 50%, #2e1a1a 100%) !important;
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ensure container has proper padding on all screen sizes */
.content-header-admin .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Animated background effect */
.content-header-admin::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: content-header-pulse 4s ease-in-out infinite;
}

/* Text elements inside content-header-admin */
.content-header-admin h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
  letter-spacing: 0.5px;
}

.content-header-admin h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.content-header-admin h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.content-header-admin p,
.content-header-admin .lead {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  opacity: 1;
}

/* Gold highlight text */
.content-header-admin .highlight {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Size variants */
.content-header-admin.compact {
  padding: 3rem 0;
}

.content-header-admin.large {
  padding: 6rem 0;
}

/* Stats display within header */
.content-header-admin .stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.content-header-admin .stat-item {
  text-align: center;
}

.content-header-admin .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  color: #FFD700;
}

.content-header-admin .stat-label {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .content-header-admin h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-admin h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-admin h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .content-header-admin p,
  .content-header-admin .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .content-header-admin {
    padding: 2rem 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: linear-gradient(135deg, #351313 0%, #0f0f0f 50%, #2e1a1a 100%) !important;
  }
  
  .content-header-admin.compact {
    padding: 1rem 0;
  }
  
  .content-header-admin.large {
    padding: 2rem 0;
  }
  
  .content-header-admin .stats {
    gap: 1.5rem;
    margin: 1rem 0;
  }
  
  .content-header-admin .stat-number {
    font-size: 1.75rem;
  }
  
  /* Remove rounded corners when search bar follows */
  .content-header-admin.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .content-header-admin h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-admin h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-admin h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .content-header-admin p,
  .content-header-admin .lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .content-header-admin {
    padding: 2rem 1rem;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: linear-gradient(135deg, #351313 0%, #0f0f0f 50%, #2e1a1a 100%) !important;
  }
  
  .content-header-admin.compact {
    padding: 0.75rem 0;
  }
  
  .content-header-admin.large {
    padding: 1.5rem 0;
  }
  
  .content-header-admin .stats {
    gap: 1rem;
    margin: 0.75rem 0;
  }
  
  .content-header-admin .stat-number {
    font-size: 1.5rem;
  }
  
  .content-header-admin .stat-label {
    font-size: 0.875rem;
  }
  
  /* Remove rounded corners when search bar follows */
  .content-header-admin.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* Staff Header Styles - Blue Theme */
.content-header-staff {
  background: linear-gradient(135deg, #1a3a52 0%, #0f1f3a 50%, #2e4a7f 100%) !important;
  color: white;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-height: auto;
  display: flex;
  align-items: center;
}

.content-header-staff .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Animated background effect */
.content-header-staff::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
  z-index: 0;
}

/* Text elements inside content-header-staff */
.content-header-staff h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  color: white !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.content-header-staff h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content-header-staff h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  color: white !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.content-header-staff p,
.content-header-staff .lead {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Highlight text with blue gradient */
.content-header-staff .highlight {
  background: linear-gradient(135deg, #3498db, #5dade2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Size variations */
.content-header-staff.compact {
  padding: 2rem 0;
}

.content-header-staff.large {
  padding: 3.5rem 0;
}

/* Stats display */
.content-header-staff .stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 1.5rem 0 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.content-header-staff .stat-item {
  text-align: center;
}

.content-header-staff .stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: #5dade2;
}

.content-header-staff .stat-label {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .content-header-staff h1 {
    font-size: 1.875rem;
    margin-bottom: 0.375rem;
  }

  .content-header-staff h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .content-header-staff h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .content-header-staff p,
  .content-header-staff .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .content-header-staff {
    padding: 1.75rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .content-header-staff.compact {
    padding: 1.5rem 0;
  }
  
  .content-header-staff.large {
    padding: 2.5rem 0;
  }
  
  .content-header-staff .stats {
    gap: 1.5rem;
    margin: 1rem 0;
  }

  .content-header-staff .stat-number {
    font-size: 1.75rem;
  }
  
  
  .content-header-staff.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 576px) {
  .content-header-staff h1 {
    font-size: 1.625rem;
    margin-bottom: 0.25rem;
  }

  .content-header-staff h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .content-header-staff h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }

  .content-header-staff p,
  .content-header-staff .lead {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .content-header-staff {
    padding: 1.25rem 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }

  .content-header-staff.compact {
    padding: 1rem 0;
  }
  
  .content-header-staff.large {
    padding: 2rem 0;
  }
  
  .content-header-staff .stats {
    gap: 1rem;
    margin: 0.75rem 0;
  }

  .content-header-staff .stat-number {
    font-size: 1.5rem;
  }
  
  .content-header-staff .stat-label {
    font-size: 0.875rem;
  }
  
  
  .content-header-staff.no-rounded-corners {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}


  