/* Google Fonts now loaded in HTML head for better performance */

/* Ensure all elements inherit the main font family */
* {
    font-family: inherit;
}

/* Specific font family for form elements */
input, textarea, select, button {
    font-family: "Frank Ruhl Libre", serif;
}

/* Text Emphasis Styles - Maximum specificity to override Bootstrap */
span.text-highlight,
p .text-highlight,
div .text-highlight,
.text-highlight {
    color: #64CADA !important;
    font-weight: 600 !important;
    font-family: "Frank Ruhl Libre", serif !important;
}

span.text-strong,
p .text-strong,
div .text-strong,
.text-strong {
    font-weight: 700 !important;
    color: #935CC0 !important;
    font-family: "Frank Ruhl Libre", serif !important;
}

span.text-accent,
p .text-accent,
div .text-accent,
.text-accent {
    color: #2298A9 !important;
    font-weight: 600 !important;
    font-family: "Frank Ruhl Libre", serif !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

span.method-highlight,
p .method-highlight,
div .method-highlight,
.method-highlight {
    background: linear-gradient(120deg, rgba(100, 202, 218, 0.15) 0%, rgba(100, 202, 218, 0.15) 100%) !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600 !important;
    color: #2298A9 !important;
    font-family: "Frank Ruhl Libre", serif !important;
}

:root {
    --brand: #64CADA;
    --brand-dark: #2298A9;
    --comp: #935CC0;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
    /* Typography Scale - Updated for better readability */
    --font-xs: 0.875rem;    /* 14px */
    --font-sm: 1rem;        /* 16px */
    --font-base: 1.125rem;  /* 18px - improved base readability */
    --font-md: 1.25rem;     /* 20px */
    --font-lg: 1.375rem;    /* 22px */
    --font-xl: 1.625rem;    /* 26px */
    --font-2xl: 2rem;       /* 32px */
    --font-3xl: 2.5rem;     /* 40px */
    --font-4xl: 3.125rem;   /* 50px */
    --font-5xl: 4rem;       /* 64px */
    
    /* Line Heights - Optimized for readability */
    --line-tight: 1.3;
    --line-normal: 1.6;     /* Better for reading longer texts */
    --line-relaxed: 1.8;
}

body {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--body);
    font-size: 16px; /* Match local testing behavior - smaller than var(--font-base) */
    line-height: var(--line-normal);
    /*background-color: aliceblue;*/
}

h1,h2,h3,h4,h5,h6,
.display-1,.display-2,.display-3,.display-4 {
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 500;
    color: var(--dark);
    line-height: var(--line-tight);
    margin-bottom: 1rem;
}

/* Heading Font Sizes */
h1, .h1 { font-size: var(--font-4xl); }
h2, .h2 { font-size: var(--font-3xl); }
h3, .h3 { font-size: var(--font-2xl); }
h4, .h4 { font-size: var(--font-xl); }
h5, .h5 { font-size: var(--font-lg); }
h6, .h6 { font-size: var(--font-base); }

.display-1 { font-size: var(--font-5xl); }
.display-2 { font-size: var(--font-4xl); }
.display-3 { font-size: var(--font-3xl); }
.display-4 { font-size: var(--font-2xl); }

/* Text Sizes */
.text-xs { font-size: var(--font-xs); }
.text-sm { font-size: var(--font-sm); }
.text-base { font-size: var(--font-base); }
.text-lg { font-size: var(--font-lg); }
.text-xl { font-size: var(--font-xl); }

/* Lead Text */
.lead {
    font-size: var(--font-lg);     /* Increased from md to lg for better prominence */
    line-height: var(--line-relaxed);
    font-weight: 400;
}

.hidden {
    display: none;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Removed problematic global img width rule that was affecting navbar logo */
/* Images get width: 100% from Bootstrap's .img-fluid class when needed */

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 400;
    font-size: var(--font-base);
    text-decoration: none;
}

/* Button Styles */
.btn {
    font-family: "Frank Ruhl Libre", serif;
    font-size: var(--font-base);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-brand {
    background-color: var(--brand);
    border-color: var(--brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 202, 218, 0.3);
}

.contact-btn {
    background-color: var(--brand);
    color: white !important;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--brand-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 202, 218, 0.3);
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Typography Utilities */
p {
    font-size: var(--font-base);
    line-height: var(--line-normal);
    margin-bottom: 1rem;
}

.text-muted {
    color: #6c757d;
    font-size: var(--font-base);  /* Improved from sm to base for readability */
    line-height: var(--line-relaxed);
}

.text-muted.lead {
    font-size: var(--font-md);
}

/* Service Cards */
.service h5 {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service p {
    font-size: var(--font-base);    /* Improved from sm to base */
    line-height: var(--line-relaxed);
}

/* Reviews/Testimonials */
.review h3 {
    font-size: var(--font-md);
    font-weight: 400;
    line-height: var(--line-relaxed);
    font-style: italic;
}

.review h5 {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review small {
    font-size: var(--font-xs);
    color: #6c757d;
}

/* Form Labels */
.form-label {
    font-family: "Frank Ruhl Libre", serif;
    font-size: var(--font-sm);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Intro Section */
.intro h6 {
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand);
    margin-bottom: 1rem;
}

.intro h1 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.hero-slider .owl-prev,
.hero-slider .owl-next{
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 60px !important;
    height: 60px !important;
    display: block;
    display: grid;
    place-items: center;
    color: #fff !important;
    border-radius: 100px;
    line-height: 0;
    border-radius: 100px !important;
    position: absolute;
    top: 50%;
    font-weight: 600 !important;
    font-size: 12px !important;
    transition: all 0.4s ease;
    margin-top: -30px !important;
}

.owl-prev {
    left: 0;
}
.owl-next {
    right: 0;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: var(--brand) !important; 
}

.owl-dot.active span{
    background-color: var(--brand) !important;
}

 /* slide */
.slide {
     min-height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
}

.slide1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/diap-comp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/diapo-educ.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/balade.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide4 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/pension-slider.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide .display-3 {
    text-transform: uppercase;
    color: #fff;
}

/* navbar */
.top-nav {
    background-color: var(--brand);
    color: #fff;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.navbar {
    box-shadow: var(--shadow);
    padding-top: 0;
    padding-bottom: 0;
    min-height: 70px;
}

.navbar .container {
    align-items: center;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--brand);
}

.navbar .navbar-nav .nav-link {
    font-family: "Frank Ruhl Libre", serif;
    color: var(--dark);
    padding-right: 2.5rem; /* Reduced from 3.5rem to create more space */
    font-size: var(--font-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent all nav links from wrapping */
}

.navbar .navbar-nav .nav-link.contact-btn {
    padding: 0.75rem 1.5rem;
    padding-right: 1.5rem;
    margin-left: 1rem;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
    transform: translateY(-2px);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
    font-weight: 700;
}

/* Remove the specific font size override - focusing on layout spacing instead */

/* Social media icons in navbar */
.navbar .navbar-nav .social-nav-link {
    padding: 0.5rem !important;
    margin: 0 0.25rem;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.navbar .navbar-nav .social-nav-link:hover {
    color: var(--brand);
    transform: translateY(-2px);
}

.navbar-brand {
    font-family: "Frank Ruhl Libre", serif;
    font-size: var(--font-2xl);
    font-weight: 700;
}

/* MOVED TO END OF FILE - This rule was being overridden by media queries below */

.navbar-brand .dot {
    color: var(--brand);
}


.navbar-brand img {
    height: auto;
    width: 150px; /* Reduced from 170px to create more navbar space */
}





.info-box {
    align-items: center;
    display: flex;
}

.info-box img {
    width: 90px;
}
    
.social-icons a{
    margin-right:15px;
    color:#999;    
}
    
.social-icons a:hover{
    color:#333;    
}

#presentation {
    background-image: url(../img/sprinkle.svg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

#presentation a {
    text-decoration: none;
}

#presentation h2{
    text-align: center;
}

#presentation p {
    background-color: #fff;
}

.qui{
    /*background-color: aliceblue;*/
    padding: 20px;
}

.polaroid {
    position: relative;
    width: 280px;  /* Optimized for layout alignment */
    max-width: 100%; /* Ensure responsiveness */
    margin: 0 auto; /* Center in column */
    display: inline-block;
}

.polaroid img {
    border: 12px solid #fff;  /* Proportional border */
    border-bottom: 45px solid #fff;  /* Space for caption */
    -webkit-box-shadow: 0 4px 12px rgba(119, 119, 119, 0.25);
    -moz-box-shadow: 0 4px 12px rgba(119, 119, 119, 0.25);
    box-shadow: 0 4px 12px rgba(119, 119, 119, 0.25);  /* Softer shadow */
    width: 100%;  /* Make image fill container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 2px; /* Slight rounding for modern look */
}

.polaroid p {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 6px;  /* Adjusted for border */
    font: 400 18px/1 'Kaushan Script', cursive;  /* Balanced font size */
    color: #666;
    margin: 0;
    left: 0;
}


#milestone {
    background: linear-gradient(rgba(255, 77, 41, 0.85), rgba(255, 77, 41, 0.85)), url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#milestone h1,
#milestone p {
    color: #fff;
}

.service {
    padding: 32px;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.service h5 {
    margin-top: 24px;
    margin-bottom: 14px;
}

.service img {
    width: 90px;
}


.project {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.project h6 {
    font-weight: 400;
}

.project h6::before {
    content: "";
    height: 2px;
    width: 30px;
    display: inline-block;
    background: var(--brand);
    vertical-align: middle;
    margin-right: 10px;
}


.project .overlay {
    width: 100%;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
    position: absolute;
    left: 10%;
    bottom: 10%
}

.project h2,
.project h6 {
    color: #fff;
}

.team-member {
    text-align: center;
}

.team-member .image{
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-member .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: -10%;
    background-color: rgba(255, 77, 41, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member h5 {
    margin-top: 16px;
    margin-bottom: 4px;
}

.team-member .social-icons {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member .social-icons a {
    width: 40px;
    height: 40px;
}

.team-member:hover .social-icons {
    top: 50%;
    opacity: 1;
}

.team-member:hover .overlay {
    top: 0%;
    opacity: 1;
}

#reviews {
    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.8), rgba(8, 32, 50, 0.8)), url(../img/diap-comp.jpg), #082032;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;        
    padding-top: 20px;
    padding-bottom: 20px;
}

.review {
    text-align: center;
    z-index: 2;
    position: relative;
    margin: 5px;
    max-width: 768px;
    margin: auto;
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review img {
    width: 200px !important;
    height: 200px;
    border-radius: 200px;
    margin: auto;
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
}

.review h3 {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 22px;
    color: #fff;
    font-weight: 400;
    line-height: 1.7;
}

.review small {
    color: var(--brand);
}

.review .stars {
    color: var(--brand);
}

.blog-post {
    position: relative;
    background-color: #fff;
    box-shadow: var(--shadow);
}

.blog-post .content {
    padding: 32px;
}

.blog-post a {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand);
    padding: 2px 12px;
    border-radius: 100px;
    text-decoration: none;
    color: #fff;
}

.blog-post h5 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.blog-post small {
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: underline;
}

footer {
    background: var(--brand-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    padding-top: 20px;
}

footer .navbar-brand {
    color: #fff;
}

footer p {
    color: #ADB3B9;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-left: 4px;
    margin-right: 4px;
}

.loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    z-index: 99999;
    position: fixed;
    left: 0;
    right: 0;
}


input.form-control {
    border-color: transparent;
    height: 44px;
}

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.04);;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--brand);
}

/*
     LINED HEADINGS
    ------------------------
*/
.lined {
    position: relative;
    padding-bottom: 0.7rem;
  }
  
  .lined::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6.25rem;
    height: 2px;
    background: var(--brand);
  }
  
  .lined-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .lined-start {
    text-align: left;
  }
  
  .lined-start::after {
    left: 0;
    transform: none;
  }
  
  .lined-center {
    text-align: center;
  }
  
  .lined-center::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  @media (min-width: 576px) {
    .lined-sm-start {
      text-align: left;
    }
    .lined-sm-start::after {
      left: 0;
      transform: none;
    }
    .lined-sm-center {
      text-align: center;
    }
    .lined-sm-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (min-width: 768px) {
    .lined-md-start {
      text-align: left;
    }
    .lined-md-start::after {
      left: 0;
      transform: none;
    }
    .lined-md-center {
      text-align: center;
    }
    .lined-md-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (min-width: 992px) {
    .lined-lg-start {
      text-align: left;
    }
    .lined-lg-start::after {
      left: 0;
      transform: none;
    }
    .lined-lg-center {
      text-align: center;
    }
    .lined-lg-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (min-width: 1200px) {
    .lined-xl-start {
      text-align: left;
    }
    .lined-xl-start::after {
      left: 0;
      transform: none;
    }
    .lined-xl-center {
      text-align: center;
    }
    .lined-xl-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  @media (min-width: 1400px) {
    .lined-xxl-start {
      text-align: left;
    }
    .lined-xxl-start::after {
      left: 0;
      transform: none;
    }
    .lined-xxl-center {
      text-align: center;
    }
    .lined-xxl-center::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }

/* Responsive Typography - Mobile optimized for readability */
@media (max-width: 767px) {
    :root {
        --font-xs: 0.875rem;    /* 14px */
        --font-sm: 1rem;        /* 16px */
        --font-base: 1.125rem;  /* 18px - maintain readability on mobile */
        --font-md: 1.1875rem;   /* 19px */
        --font-lg: 1.25rem;     /* 20px */
        --font-xl: 1.375rem;    /* 22px */
        --font-2xl: 1.75rem;    /* 28px */
        --font-3xl: 2.125rem;   /* 34px */
        --font-4xl: 2.625rem;   /* 42px */
        --font-5xl: 3.25rem;    /* 52px */
        
        /* Slightly tighter line heights for mobile */
        --line-normal: 1.55;
        --line-relaxed: 1.75;
    }
    
    .navbar .navbar-nav .nav-link {
        font-size: var(--font-xs);
        padding-right: 0.8rem;
        white-space: nowrap;
    }
    
    .navbar-brand img {
        width: 130px; /* Slightly smaller for mobile */
        height: auto;
    }
    
    .display-3 {
        font-size: var(--font-3xl) \!important;
    }
    
    .intro h1 {
        font-size: var(--font-3xl);
    }
    
    .intro p {
        font-size: var(--font-sm);
    }
    
    /* Mobile polaroid sizing */
    .polaroid {
        width: 240px;  /* Optimized for mobile */
    }
    
    .polaroid p {
        font: 400 16px/1 'Kaushan Script', cursive;  /* Adjusted font size for mobile */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-nav .nav-link {
        padding-right: 1rem; /* Reduced for better spacing on tablets */
        font-size: var(--font-xs);
        white-space: nowrap;
    }
    
    .navbar-brand img {
        width: 140px; /* Slightly smaller for tablet */
        height: auto;
    }
}

/* Comprehensive navbar sizing for all breakpoints */
/* 
 * Breakpoint coverage:
 * Base: Default fallback (160px logo, 1.125rem font)
 * 0-767px: Mobile (140px logo, 1rem font) 
 * 768-991px: Tablet (150px logo, 1rem font)
 * 992-1199px: Large tablet/Small desktop (160px logo, 1rem font)
 * 1200px+: Large desktop (180px logo, 1.125rem font)
 */

/* Large tablets to small desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .navbar-brand img,
    .navbar-brand img {
        width: 150px !important;
        height: auto !important;
        display: block !important;
        max-width: none !important; /* FIXED: Override global width: 100% */
        min-width: 150px !important;
    }
    
}

/* Desktop and larger (1200px+) */
@media (min-width: 1200px) {
    .navbar .navbar-brand img,
    .navbar-brand img {
        width: 160px !important; /* Slightly larger for large screens */
        height: auto !important;
        display: block !important;
        max-width: none !important; /* FIXED: Override global width: 100% */
        min-width: 160px !important;
    }
    
}

/* Improved Section Styling */
.intro {
    margin-bottom: 3rem;
    text-align: center;
}

.intro p {
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.lined {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.lined::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand);
}

/* =======================================================================
   FINAL CASCADE FIX: NAVBAR LOGO SIZING
   This MUST come at the very end to override all Bootstrap/Owl Carousel global img rules
   ======================================================================= */
   
/* Override Bootstrap's .img-fluid and global img rules for navbar logo */
.navbar .navbar-brand img[src*="new-logo"],
.navbar .navbar-brand img[alt*="La Voix des Animaux"],
.navbar .navbar-brand img.d-inline-block,
.navbar .navbar-brand img,
.navbar-brand img[src*="new-logo"],
.navbar-brand img[alt*="La Voix des Animaux"],
.navbar-brand img.d-inline-block,
.navbar-brand img {
    width: 150px !important; /* Reduced from 170px to create more navbar space */
    height: auto !important;
    max-width: none !important; /* Override Bootstrap's max-width: 100% */
    display: block !important;
    min-width: 150px !important; /* Prevent collapse to 0px */
    box-sizing: border-box !important;
    
    /* Additional overrides for any global img rules */
    flex-shrink: 0 !important; /* Prevent shrinking in flex containers */
    object-fit: contain !important; /* Maintain aspect ratio */
}
