/* ============================================
   ICL High School Alumni Community Styles
   Brand Colors:
   - Primary: Maroon/Burgundy #8C1B23
   - Secondary: White/Off-White #FFFFFF, #F8F8F8
   - Text: Charcoal Black #333333
   - Accent: Light Grey #EAEAEA
   ============================================ */

/* CSS Variables */
:root {
  --primary: #8C1B23;
  --primary-dark: #6B1419;
  --primary-light: #A82D36;
  --secondary: #FFFFFF;
  --off-white: #F8F8F8;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
  --accent-grey: #EAEAEA;
  --border-grey: #DDDDDD;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  background-color: var(--secondary);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(140, 27, 35, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn-white {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--off-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--secondary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(140, 27, 35, 0.9) 0%, rgba(107, 20, 25, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   FEATURE BOXES
   ============================================ */
.feature-box {
  text-align: center;
  padding: 2rem;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-text {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ============================================
   SEARCH & FILTERS
   ============================================ */
.search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-grey);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-grey);
  border-radius: var(--radius);
  font-size: 1rem;
  background-color: var(--secondary);
  cursor: pointer;
  min-width: 150px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-grey);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
  .form-select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ============================================
   BATCH NAVIGATION
   ============================================ */
.decade-section {
  margin-bottom: 2rem;
}

.decade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.decade-header:hover {
  background-color: var(--primary-dark);
}

.decade-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.decade-toggle {
  font-size: 1.5rem;
  transition: var(--transition);
}

.decade-header.active .decade-toggle {
  transform: rotate(180deg);
}

.decade-content {
  display: none;
  padding: 1.5rem;
  background-color: var(--off-white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.decade-content.active {
  display: block;
}

.year-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.year-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.year-pill:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* ============================================
   BUSINESS CARDS
   ============================================ */
.business-card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.business-logo {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background-color: var(--off-white);
  padding: 1rem;
}

.business-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.business-name {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.business-owner {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.business-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--accent-grey);
  color: var(--text-medium);
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.business-description {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.business-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.business-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  border-radius: 50%;
  color: var(--primary);
  transition: var(--transition);
}

.business-link:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* ============================================
   TEACHER CARDS
   ============================================ */
.teacher-card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.teacher-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.teacher-content {
  padding: 1.5rem;
}

.teacher-name {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.teacher-subject {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.teacher-years {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.teacher-note {
  font-style: italic;
  color: var(--text-medium);
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent-grey);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--secondary);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--off-white);
  border-bottom: 1px solid var(--accent-grey);
}

.breadcrumbs-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumbs-list li:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-medium);
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs-current {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   ALUMNI CARDS
   ============================================ */
.alumni-card {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.alumni-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.alumni-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.alumni-content {
  padding: 1.5rem;
}

.alumni-name {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.alumni-profession {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.25rem;
}

.alumni-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.alumni-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================
   NOTICE BANNER
   ============================================ */
.notice-banner {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.notice-banner a {
  color: var(--secondary);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--text-dark);
  color: var(--secondary);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-about {
  color: var(--accent-grey);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--accent-grey);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #444;
  border-radius: 50%;
  color: var(--secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
}

/* ============================================
   POLICY PAGE STYLES
   ============================================ */
.policy-section {
  margin-bottom: 3rem;
}

.policy-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-grey);
}

.policy-content {
  line-height: 1.8;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    box-shadow: 0 4px 10px var(--shadow);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--accent-grey);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Loading State */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--accent-grey);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

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

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert-info {
  background-color: #E3F2FD;
  color: #1565C0;
  border-left: 4px solid #1565C0;
}

.alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border-left: 4px solid #2E7D32;
}

.alert-warning {
  background-color: #FFF3E0;
  color: #E65100;
  border-left: 4px solid #E65100;
}

.alert-error {
  background-color: #FFEBEE;
  color: #C62828;
  border-left: 4px solid #C62828;
}
