/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */



.main-title-color{
   color: var(--primary-500);
 }


 :root {
  /* Glacier + Citrus palette */
  --primary-700: #1262A2; /* brand */
  --primary-600: #1C78C0;
  --primary-500: #3492DA;
  --primary-50:  #F2F7FB;

  --accent-amber: #F59E0B; /* CTA only */

  --neutral-900: #0B1320;
  --neutral-700: #2B3340;
  --neutral-500: #6B7280;
  --neutral-200: #E5E7EB;

  --success: #10B981;
  --error: #EF4444;

  /* semantic aliases */
  --primary-color: var(--primary-700);
  --secondary-color: var(--primary-500);
  --dark-color: var(--neutral-900);
  --light-bg: var(--primary-50);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Top Banner */
.top-banner {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a2332 100%);
  color: white;
  padding: 10px 0;
  font-size: 0.68rem;
  border-bottom: 2px solid var(--primary-500);
  position: relative;
  overflow: hidden;
}

.top-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 146, 218, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.trust-badge {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
  color: white;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 26px;
  line-height: 1;
}

.trust-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.trust-badge i {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 26px;
  line-height: 1;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
  color: var(--primary-500);
  font-size: 0.64rem;
  width: 11px;
  text-align: center;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-500);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.banner-cta {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  min-height: 26px;
}

/* Medium screen responsiveness for top banner */
@media (max-width: 1199px) {
  .top-banner .row {
    justify-content: center;
  }
  
  .contact-info {
    gap: 19px;
    justify-content: center;
  }
  
  .contact-item {
    gap: 6px;
    padding: 3px 6px;
  }
}

/* Small screen responsiveness for top banner */
@media (max-width: 768px) {
  .top-banner {
    padding: 6px 0;
    font-size: 0.64rem;
  }
  
  .contact-info {
    gap: 13px;
  }
  
  .contact-item {
    gap: 5px;
  }
}


.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

/* Floating pill navbar */
.navbar-float-wrapper {
  position: absolute; /* sits over hero */
  top: 60px; /* adjusted for top banner height */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10; /* above hero elements */
  pointer-events: none; /* allow clicks only on the navbar itself */
}

.pill-navbar {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  padding: 10px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  width: min(100%, 1080px);
  margin: 0 16px;
  pointer-events: auto; /* re-enable clicks for the navbar */
  overflow: visible; /* allow CTA to extend visually without affecting layout */
}

.pill-navbar .nav-link {
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: 1.1em;
}

/* Gradient CTA inside pill navbar */
.pill-navbar .pill-cta {
  background: var(--accent-amber);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 13px 16px; /* +10px total vertical */
  margin-left: 20px;
  border: 1px solid rgba(255,255,255,0.35);
  margin-top: -5px;   /* offset added padding to keep navbar height */
  margin-bottom: -5px;
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.pill-navbar .pill-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Phone CTA button */
.pill-navbar .phone-cta {
  background: var(--primary-600);
  color: #fff !important;
  box-shadow: 0 6px 15px rgba(18, 98, 162, 0.2);
  padding: 10px 16px;
  margin-right: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pill-navbar .phone-cta:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18, 98, 162, 0.3);
}

.pill-navbar .phone-cta i {
  margin-right: 6px;
  font-size: 0.9rem;
}

/* Ensure body content doesn't expect a fixed navbar */
body { 
  padding-top: 0 !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.navbar-logo {
  height: 33px;
  width: auto;
  vertical-align: -7px;
  margin-right: 4px;
}
.navbar-brand:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  color: white;
  padding: 220px 0 125px; /* increased top padding for top banner */
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-custom {
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-custom {
  background: var(--accent-amber);
  color: #ffffff;
}

.btn-primary-custom:hover {
  background: var(--accent-amber) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0.9;
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-500);
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-200);
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  margin-left: auto;
  margin-right: auto;
}

/* Wrapper for cards with decorative elements */
.feature-card-wrapper {
  position: relative;
  height: 100%;
}

/* Decorative dotted pattern behind service cards */
.decor-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* Special styling for dots on dark backgrounds */
.stats-section .decor-dots {
  opacity: 0.2;
  filter: invert(1);
}

.decor-dots.tl {
  top: -30px;
  left: -30px;
}

.decor-dots.br {
  bottom: -30px;
  right: -30px;
}


.route-section {
  background: linear-gradient(135deg, var(--primary-50) 0%, #e8f4fd 100%);
  background-image: url("/assets/maps-real-3-d3f1a3de.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.route-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 98, 162, 0.1) 0%, rgba(52, 146, 218, 0.05) 100%);
  z-index: 1;
}

.route-section .container {
  position: relative;
  z-index: 2;
}

.route-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(18, 98, 162, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-amber), var(--primary-700));
}

.route-arrow {
  font-size: 3rem;
  color: var(--primary-600);
  margin: 0;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.route-arrow:hover {
  transform: scale(1.1);
  color: var(--accent-amber);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.location-box {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  color: white;
  padding: 35px 30px;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(18, 98, 162, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(18, 98, 162, 0.4);
}

.location-box:hover::before {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.3;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-amber);
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.stat-description {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

/* FMCSA Compliance Badge */
.compliance-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.compliance-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.compliance-badge i {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--accent-amber);
}

.compliance-badge span {
  font-size: 1rem;
  margin-right: 8px;
}

.compliance-badge small {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Product Cards for What We Ship Section */
.product-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-200);
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary-500);
}

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(18, 98, 162, 0.3);
}

.product-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.product-card p {
  color: var(--neutral-500);
  line-height: 1.6;
  margin-bottom: 0;
}

.product-card-cta {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-color: var(--primary-300);
}

.product-card-cta h4 {
  color: var(--primary-700);
}

.product-card-cta p {
  color: var(--primary-600);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-amber);
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-700);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.testimonial-author {
  border-top: 1px solid var(--neutral-200);
  padding-top: 20px;
}

.author-info h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--neutral-500);
  font-size: 0.9rem;
}

.cta-section {
  background: var(--primary-700);
  color: white;
  padding: 80px 0;
  text-align: center;
}

/* Contact Section Background */
.contact-section {
  background: linear-gradient(135deg, var(--primary-50) 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="contactPattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 0 30 L 30 0 L 60 30 L 30 60 Z" fill="none" stroke="rgba(18, 98, 162, 0.05)" stroke-width="1"/><circle cx="15" cy="15" r="2" fill="rgba(52, 146, 218, 0.08)"/><circle cx="45" cy="45" r="2" fill="rgba(52, 146, 218, 0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contactPattern)" /></svg>');
  opacity: 0.8;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Add spacing between inputs in contact form only */
.contact-section .form-control,
.contact-section .form-select {
  margin-bottom: 20px;
}

.form-control, .form-select {
  border-radius: 10px;
  padding: 12px 20px;
  border: 2px solid var(--neutral-200);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(18, 98, 162, 0.15);
}

/* Align semantic text colors with palette */
.text-success { color: var(--success) !important; }
.text-danger { color: var(--error) !important; }

footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 0 20px;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .route-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  /* Fix mobile pill-navbar to be rectangular instead of oval */
  .pill-navbar {
    border-radius: 15px !important; /* Square/rectangular with rounded corners instead of oval */
    padding: 15px 20px; /* More padding for mobile */
  }

  /* Fix mobile navbar dropdown to be rectangular instead of oval */
  .pill-navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px !important; /* Square/rectangular with rounded corners */
    margin-top: 10px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
  }

  .pill-navbar .navbar-nav {
    flex-direction: column;
    gap: 8px;
  }

  .pill-navbar .nav-item {
    width: 100%;
  }

  .pill-navbar .nav-link {
    border-radius: 8px !important; /* Less rounded for mobile links */
    padding: 12px 16px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .pill-navbar .nav-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
  }

  .pill-navbar .pill-cta {
    margin: 10px 0 0 0 !important; /* Reset margins for mobile */
    width: 100%;
    text-align: center;
    border-radius: 8px !important;
  }
}

/* Prevent hero text from exceeding navbar width on very large screens */
@media (min-width: 1400px) {
  .hero-section > .container {
    max-width: 1080px; /* match .pill-navbar width */
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

body, p, a, li, input, button {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

/* Quote Form Styles */
.page-header {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 100%);
  color: white;
  padding: 80px 0 60px;
  margin-top: 0;
}

.quote-form-section {
  background-color: var(--light-bg);
}

.quote-form-card .card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-form-card .card-body {
  background: white;
  border-radius: 15px;
}

.form-label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 8px;
}

.form-control, .form-select {
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 0.2rem rgba(52, 146, 218, 0.25);
  outline: none;
}

.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-box i {
  display: block;
  margin-bottom: 15px;
}

.feature-box h5 {
  color: var(--neutral-700);
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--neutral-500);
  font-size: 14px;
}

/* Inline styles moved from HTML to comply with CSP */
.hero-section {
  background-image: url("/assets/home-page-banner-6-b362e4a5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.decor-dots.tl {
  background-image: url("/assets/dotted-pattern-9b246de9.png");
}

.decor-dots.br {
  background-image: url("/assets/dotted-pattern-9b246de9.png");
}

.quote-email-hr {
  margin: 30px 0;
}

/* Flash Message / Toastr Notifications */
.flash-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.flash-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid;
  animation: slideInRight 0.3s ease-out;
  position: relative;
  backdrop-filter: blur(10px);
  min-width: 280px;
  max-width: 400px;
}

.flash-message i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.flash-message span {
  flex-grow: 1;
  font-weight: 500;
  line-height: 1.4;
}

.flash-notice {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(10, 150, 100, 0.95) 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.flash-alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.flash-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.flash-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(90deg);
}

.flash-close i {
  font-size: 0.9rem;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Mobile responsiveness for flash messages */
@media (max-width: 768px) {
  .flash-container {
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
  
  .flash-message {
    min-width: auto;
    max-width: 100%;
  }
}