/* Reset box-sizing for consistency */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Wrapper for the social navigation */
.social-wrapper {
  width: 100%;
  background-color: #0056b3;
  padding: 12px 0;
  display: flex;
  justify-content: center;
}

/* Navigation container */
.social-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px; /* limits width on large screens */
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}
button,
.add-to-cart,
.category-card,
.menu-toggle,
.back-button {
  -webkit-tap-highlight-color: transparent; /* Remove gray overlay on iOS/Android */
  -webkit-touch-callout: none;              /* Disable long-press menu on iOS */
  outline: none;                            /* Optional: remove focus outline */
}
.icon-link {
  display: inline-flex;           /* Use flexbox */
  align-items: center;            /* Vertically center */
  justify-content: center;        /* Horizontally center */
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: white;
  background: transparent;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
p{
    color: black;
}
.icon-link svg.icon-svg {
  display: block;                 /* Remove inline whitespace */
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  pointer-events: none;
  margin: 0;
}


/* SVG inside the icon links */
.icon-link .icon-svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  pointer-events: none;
}

/* Hover and focus states */
.icon-link:hover,
.icon-link:focus {
  color: #cce0ff;
  transform: scale(1.1);
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .social-nav {
    gap: 12px;
    max-width: 100%;
    padding: 0 10px;
  }

  .icon-link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .icon-link .icon-svg {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* Container for social media icons */
.social-media-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: #0056b3;
  flex-wrap: wrap;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Each social icon link */
.social-icon {
  color: white;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  /* Remove default link styles */
  border: none;
  padding: 0;
  margin: 0;
}

/* Font Awesome icons inside links */
.social-icon i.fab {
  pointer-events: none; /* Prevent icon from capturing pointer events */
  font-size: 1.8rem;
  line-height: 1;
  background: transparent !important;
}

/* Hover effect */
.social-icon:hover,
.social-icon:focus {
  color: #cce0ff;
  transform: scale(1.1);
  outline: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .social-media-bar {
    gap: 10px;
    padding: 8px;
  }

  .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.4rem;
  }

  .social-icon i.fab {
    font-size: 1.4rem;
  }
}


header {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 8px 20px; /* Slightly increase top-bottom padding for balance */
    border-bottom: 2px solid #ddd; /* Use a subtle grey for a modern touch */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    z-index: 1000;
    height: 60px; /* Reduce height for a sleeker look */
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    overflow: hidden; /* Prevent scrolling */
    border-bottom: 0.3px solid;
}
/* Container for search bar and icon */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    width: 80%; /* Adjusted for responsiveness */
    max-width: 300px; /* Prevents excessive stretching */
    position: relative;
    overflow: hidden; /* Prevents scrolling */
    max-height: 100%; /* Ensures it doesn’t expand beyond its content */
}

/* Search input field */
#searchBar {
    width: 0;
    padding: 10px 40px 10px 15px; /* Adjusted padding */
    border: 2px solid #0056b3;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: #f8f9fa;
    opacity: 0;
    visibility: hidden; /* Hide the search bar but keep it in the flow */
}

/* Styling for search icon */
.search-icon {
    position: absolute;
    right: 70px; /* Moved 20px more to the right */
    color: royalblue; /* Dark color for better visibility on white background */
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 1; /* Ensure the icon is above other elements */
    visibility: visible; /* Ensure the icon is always visible */
}

/* Hover effect for the icon */
.search-container:hover .search-icon {
    color: darkblue; /* Change color on hover for emphasis */
    transform: scale(1.1);
}

/* When search bar is active, expand it */
.search-container.open #searchBar {
    width: 200px; /* Adjust width as per your design */
    opacity: 1;
    visibility: visible; /* Show the search bar */
}

/* Active state of the icon */
.search-container.open .search-icon {
    transform: rotate(180deg); /* Optional, to rotate the icon */
}

/* Focus state for search input */
#searchBar:focus {
    border-color: #004080;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 91, 187, 0.3);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .search-container {
        width: 40%; /* More flexibility */
        max-width: 250px;
    }

    #searchBar {
        font-size: 14px; /* Slightly smaller font */
        padding: 8px 35px 8px 12px; /* Adjusted padding */
    }

    .search-icon {
        font-size: 25px; /* Slightly smaller icon */
        position: absolute; /* Ensure positioning */
        right: 5px; /* Move to the right edge */
    }
    
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333; /* Change to match your theme */
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: none;
    overflow: hidden;
  }
  
  .cart-link:hover {
    background: rgba(0,0,0,0.05);
  }
  
  .cart-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background-color: #4361ee; /* Primary color */
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    padding: 2px;
    position: relative;
    top: -2px;
    animation: pulse 2s infinite;
  }
  
  /* Pulse animation for attention */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 8px rgba(67, 97, 238, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
  }
  
  /* When cart has items */
  .cart-counter:not([data-count="0"]) {
    background-color: #f72585; /* Accent color when items exist */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .cart-link {
      padding: 6px 10px;
      font-size: 14px;
    }
    
    .cart-counter {
      min-width: 20px;
      height: 20px;
      font-size: 11px;
    }
  }
 
header ::-webkit-scrollbar {
    display: none;
}

nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

nav ul li {
    padding: 5px 10px; /* Adjust space around nav links */
}

nav a {
    font-size: 16px; /* Adjust font size */
    padding: 5px 8px; /* Reduce padding inside links */
    font-weight: 300; /* Thin font for a sleek look */
    font-family: 'Poppins', sans-serif; /* Premium modern font */
    text-transform: uppercase; /* Stylish uppercase text */
    letter-spacing: 1px; /* Slight letter spacing for elegance */
}
.cart-counter {
    background-color: #ff0000;
    color: white;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* Navigation links (Desktop View) */
.nav-links {
    display: flex;
    gap: 20px;
    z-index: 1001;
    position: static;
}

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

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        margin-top: 50px;
        margin-left: 130px;
        border-radius: 5px;
        width: 50%;
        height: 70vh; /* Full height */
        background-color: rgba(0, 0, 0, 0.9); /* Dark background for contrast */
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        z-index: 2000; /* Ensure it's above everything */
        overflow: hidden; /* Prevents scrolling */
        max-height: 100%; /* Ensures it doesn’t expand beyond its content */
    }

    .nav-links.active {
        display: flex;
    }

    /* Prevent scrolling when the menu is open */
    body.menu-open {
        overflow: hidden;
    }
    .cart-popup {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 20px;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 9999;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px; /* Adjust for better placement */
        transform: translateY(-50%);
        font-size: 24px;
        background: none;
        border: none;
        color: black;
        cursor: pointer;
        z-index: 3000; /* Ensure it's above everything */
        overflow: hidden; /* Prevents scrolling */
        max-height: 100%; /* Ensures it doesn’t expand beyond its content */
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important; /* Forces menu to show on larger screens */
    }
}

/* Navigation Links */
.nav-links a {
    color: royalblue;
    display: block;
    padding: 10px;
    text-align: center;
    z-index: 1002;
    position: relative;
    font-weight: 300; /* Thin font */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.5s ease-in-out, left 0.5s ease-in-out; /* Slow-motion effect */
}
.logo-container .logo {
    width: 50px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.nav-links a:hover {
    color: black; /* Darker color on hover */
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}
.logo{
    max-width: 150px; 
    height: auto;
    margin-right: 10px;
}
.logo-container {
    display: flex;
    align-items: center;
}
a{
    text-decoration: none;
    padding: 20px;
    align-content: center;
    color: white;
    font-weight: 700;
}
a:hover{
     text-decoration: overline;
     animation-duration: 3ms;
     text-decoration-color:royalblue;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 300; /* Thin but readable for a sleek look */
    font-size: 16px; /* Balanced size for readability */
    color: #333; /* Soft black for a refined feel */
    line-height: 1.6; /* Improves text readability */
    text-rendering: optimizeLegibility; /* Enhances text clarity */
    background-color: #fdfdfd; /* Off-white for a premium aesthetic */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.7s ease-in-out; /* Slightly smoother transition */
}
body {
    animation: fadeIn 0.7s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Additional Touch for Smooth Loading Experience */
html {
    scroll-behavior: smooth; /* Ensures a smooth scrolling effect */
    overflow-x: hidden;
}

#lis{
    color: black;
}
* {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

h3, h4 {
    text-decoration-thickness: 2px; /* Makes the overline visible */
    text-underline-offset: 5px; /* Proper spacing */
}
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 400; /* Slightly bold but still elegant */
    font-size: 18px; /* Adjusted for readability */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px; /* Gives it a modern, high-end look */
    text-decoration: none; /* Remove overline for a cleaner appearance */
    position: relative;
    color: #222; /* Deep black for contrast */

    /* Elegant Underline Effect */
    display: inline-block;
    padding-bottom: 5px;
}

h6::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, royalblue, #0056b3);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.4s ease-in-out;
}

h6:hover::after {
    width: 80%;
}

#one {
    background: linear-gradient(to bottom right, white, #f7f9fc); /* Subtle gradient for depth */
    border-radius: 10px; /* Softer, more premium feel */
    padding: 20px;
    margin: 120px 5px 20px 5px; /* Adjusted margins for spacing */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Lighter border for sophistication */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for a premium touch */
    text-align: center;
    max-width: 600px; /* Ensures a refined, centered layout */
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    #one {
        max-width: 90%; /* Allows it to fit within smaller screens */
        margin: 80px auto 20px auto; /* Adjust top margin */
        padding: 15px; /* Slightly reduced padding */
    }
}

/* Subtle hover effect */
#one:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
}
#even{
    font-weight: 700;
    text-decoration: underline;
}

p{
    color: black;
}

li{
    list-style: none;
    color: white;
}
/* Contact Section Styling */
.contact-section {
    background-color: #007BFF; /* Bright blue */
    color: #ffffff;
    padding: 50px 0;
    font-family: system-ui, -apple-system ;
    width: 100vw;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 10px;
    width: 100%;
    text-align: center;
}

/* Contact Boxes */
.contact-box {
    background: rgba(255, 255, 255, 0.1); /* Light transparent box */
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    border: 0.3px solid;
    margin: 5px;
}
.contact-box p strong{
    text-decoration: overline;
    color: darkblue;
    font-weight: bold;
    font-size: small;

}

/* Hover effect */
.contact-box:hover {
    transform: translateY(-5px);
}

/* Section Titles */
.contact-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: underline;
    color: darkblue;
}

/* Contact Links */
.contact-link {
    color: black;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
     Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}
.contact-link:hover {
    color:darkblue;
    text-decoration: underline;
}

/* Glovo Button */
.glovo-box {
    text-align: center;
}

.glovo-link {
    background-color: gold;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 5px;
    color: #007BFF;
    font-weight: bold;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.glovo-link:hover {
    background-color: black;
    color: #ffffff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.1);
}
  .contact-section {
    overflow: hidden !important; /* Ensures no scrolling */
    max-height: fit-content; /* Prevents excessive height */
}
.contact-container {
    overflow: hidden !important; /* Stops any inner scrolling */
    max-height: fit-content !important;
    white-space: nowrap; /* Prevents text from wrapping */
}
.contact-box {
    white-space: nowrap; /* Ensures text stays in one line */
    overflow: hidden; /* Stops any unwanted scrolling */
    text-overflow: ellipsis; /* Optional: Adds "..." if text overflows */
}
.contact-link {
    display: inline-block; /* Prevents link expansion */
    text-decoration: none; /* Removes underlines */
    white-space: nowrap; /* Ensures links don’t wrap */
}

.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.7rem; /* Small gaps */
    padding: 1rem 0.8rem; /* Adds horizontal margin */
    margin-top: 80px;
    width: 100%;
    box-sizing: border-box;
}

.medicine-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.medicine-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.medicine-card h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.medicine-card .price {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 700;
    margin: 0.5rem 0;
}

.medicine-card .button-container {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.medicine-card button {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .shop-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
        padding: 1rem 0.8rem;
    }
    .medicine-card {
        padding: 0.8rem;
    }
    .medicine-card img {
        height: 130px;
    }
}
.medicine-card h2 {
    word-break: break-word;
}

@media (max-width: 576px) {
    .shop-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.8rem 0.6rem;
    }
    .medicine-card {
        padding: 0.75rem;
    }
    .medicine-card img {
        height: 110px;
    }
    .medicine-card h2 {
        font-size: 0.9rem;
    }
    .medicine-card .price {
        font-size: 1rem;
    }
    .medicine-card button {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .shop-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.6rem 0.5rem;
    }
    .medicine-card {
        padding: 0.7rem;
    }
    .medicine-card img {
        height: 100px;
    }
    .medicine-card h2 {
        font-size: 0.85rem;
    }
    .medicine-card button {
        font-size: 0.7rem;
        padding: 0.4rem;
    }
}

/* Categories Section */
.categories-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.category-card {
    flex: 0 1 calc(50% - 15px) !important; /* Force 50% width with !important */
    min-width: 0 !important; /* Override any min-width issues */
    max-width: calc(50% - 15px) !important;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.1px solid;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px 10px 0 0;
    display: block;
}

.category-card h3 {
  margin: 12px 8px;
  font-size: 1rem; /* Slightly larger for better readability */
  color: #1a4fc3; /* Deeper royal blue for elegance */
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  text-decoration: underline;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tablet View */
@media (min-width: 600px) {
    .category-card {
        flex: 0 1 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
    }
}

/* Desktop View */
@media (min-width: 900px) {
    .category-card {
        flex: 0 1 calc(25% - 20px) !important;
        max-width: calc(25% - 20px) !important;
    }
}

/* Very small mobile fix */
@media (max-width: 350px) {
    .category-card {
        flex: 0 1 100% !important;
        max-width: 100% !important;
    }
}

.add-to-cart {
    background-color: royalblue;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.price sup {
    font-size: 12px; /* Smaller superscript */
    vertical-align: super; /* Ensures proper positioning */
    color: #004080; /* Slightly different shade for distinction */
}
.add-to-cart:hover {
    background-color: darkblue;
}
.fa-cart-shopping::-webkit-scrollbar{
    display: none;
}
.price {
    font-weight: bolder;
    color: #0056b3;
}
.custom-cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
  }
  
  .popup-content {
    position: relative;
  }
  
  .close-popup {
    position: absolute;
    top: -10px;
    right: -0.4px;
    cursor: pointer;
    font-size: 20px;
  }
  
  .popup-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
  }
  
  .popup-details img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .popup-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  
  .popup-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .popup-buttons button:first-child {
    background: #007bff;
    color: white;
  }
  
  .popup-buttons button:last-child {
    background: #f8f9fa;
    border: 1px solid #ddd;
  }
 body {
    font-family: "Poppins", sans-serif;
    font-weight: 300; /* Thin but readable for a sleek look */
    font-size: 16px; /* Balanced size for readability */
    color: #333; /* Soft black for a refined feel */
    line-height: 1.6; /* Improves text readability */
    text-rendering: optimizeLegibility; /* Enhances text clarity */
    background-color: #fdfdfd; /* Off-white for a premium aesthetic */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.7s ease-in-out; /* Slightly smoother transition */
}
body {
    animation: fadeIn 0.7s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.announcement-bar {
    background-color: #ff6b6b;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    margin-top: 80px;
}