
body, html {
    overflow-x: hidden; /* Prevent horizontal overflow */
    margin: 0; /* Remove default margin */
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
/* Content should take available space */
.main-content {
    flex: 1;
}

/* Footer sticks at the bottom */
.footer {
    background-color: #4e4e4e;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    width: 100%;
}

/* Navbar Styling */
/* Navbar Styling */
.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    background: white;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease-in-out;
    padding: 10px 20px; /* Increased spacing */
    margin: 0 10px; /* Proper gap between nav items */
}

/* Active Nav Item */
.nav-item.active .nav-link {
    color: #3A5311 !important;
    font-weight: bold;
}

/* Login/Register Button */
.navbar-nav .nav-item .btn {
    font-weight: 600;
    border-color: #3A5311;
    color: #000000;
    padding: 10px 25px; /* Better button padding */
    margin-left: 30px; /* Proper spacing from nav items */
}

.navbar-brand img {
    height: 55px; /* Adjust as needed */
    max-height: 100%; 
    width: auto; /* Maintains aspect ratio */
    object-fit: contain; /* Ensures proper fitting */
}


/* Custom Container */
.custom-container {
    width: 1300px;
}
.nav-item .btn-outline-dark:hover {
    background-color: #000 !important; /* Black background */
    color: #fff !important; /* White text */
    border-color: #000 !important; /* Black border */
}

 /* Home Icon Color & Size */
 .home-icon {
    color: #ff904e;
    font-size: 26px;
    margin-right: 6px;
}


.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}
       .main .dropdown-menu {
        display: none;
        position: absolute;
        background: white;
        width: 180px !important;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
    }
 .main   .dropdown:hover .dropdown-menu {
        display: block;
    }

  .main  .dropdown-submenu:hover .dropdown-menu {
max-height: calc(100vh - 30vh); /* Prevent clipping */
overflow-y: auto;
}

/* Adjust if the submenu is too high */
.main:hover .dropdown-menu {
top: auto;
bottom: auto;
}

/* If submenu goes off-screen at the bottom, open upwards */
@media (min-width: 769px) {
.main   .dropdown-menu {
    top: 50%;
    transform: translatex(25%);
}
}


    .profile-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ddd;
    }
           .main .dropdown-menu {
            display: none;
            position: absolute;
            background: white;
            width: 180px !important;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px;
            border-radius: 5px;
        }
     .main   .dropdown:hover .dropdown-menu {
            display: block;
        }

      .main  .dropdown-submenu:hover .dropdown-menu {
    max-height: calc(100vh - 30vh); /* Prevent clipping */
    overflow-y: auto;
}

/* Adjust if the submenu is too high */
.main:hover .dropdown-menu {
    top: auto;
    bottom: auto;
}

/* If submenu goes off-screen at the bottom, open upwards */
@media (min-width: 769px) {
   .main   .dropdown-menu {
        top: 50%;
        transform: translatex(25%);
    }
}




/* Mobile Adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        width: 100%;
    }
    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
    .navbar-nav .nav-item .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}



/*second navbar*/
/*second navbar*/
.secondary-nav {
    background: #ff904e;
    padding: 10px 0;
}

.secondary-nav .nav-link {
    font-weight: 600;
    color: #ffffff;
    padding: 8px 15px;
    transition: color 0.3s ease-in-out;
}

.secondary-nav .nav-link:hover {
    color: #ffffff;
}

.dropdown-menu {
    min-width: 250px;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Main Category */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    min-width: 200px;
}

/* Show Submenu on Hover */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Category Link */
.category-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

/* Sub Menu Items */
.sub-menu li {
    padding: 5px 12px;
}

.sub-menu a {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.sub-menu a:hover {
    background: #ff904e;
    color: white;
}



/* Default Submenu Position */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    display: none;
    z-index: 1000; /* Ensure it stays on top */
}

/* Show Submenu */
.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Prevent Submenu from Going Off the Top */
.dropdown-submenu .dropdown-menu {
    transform-origin: top left;
}

/* Fix Overlapping Issue for Middle Submenus */
.dropdown-submenu:hover .dropdown-menu {
    max-height: calc(100vh - 30vh); /* Prevent clipping */
    overflow-y: auto;
}

/* Adjust if the submenu is too high */
.dropdown-submenu:hover .dropdown-menu {
    top: auto;
    bottom: auto;
}




/*modal*/

.modal.right .modal-dialog {
    position: fixed;
    right: 0;
    margin: auto;
    width: 75%;
    max-width: 300px;
    height: 100%;
}

.modal.right .modal-content {
    background: white; /* Keep the background clean */
    color: black; /* Ensures all text inside is black */
}

/* Menu Items */
.modal.right .modal-content a {
    color: black !important;
    font-weight: 600; /* Makes text bold */
    text-decoration: none; /* Removes underline */
}

/* Hover Effect */
.modal.right .modal-content a:hover {
    color: #ff904e !important; /* Change to your theme color */
}



/* If submenu goes off-screen at the bottom, open upwards */
@media (min-width: 769px) {
    .dropdown-submenu .dropdown-menu {
        top: 50%;
        transform: translateY(-70%);
    }
}

.modal.left .modal-dialog {
    position: fixed;
    left: 0;
    margin: 0;
    width: 75%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.modal.left.show .modal-dialog {
    transform: translateX(0);
}

.modal-content {
    height: 100vh;
    overflow-y: auto;
}

.category-lists {
    list-style: none;
    padding: 0;
}

.category-links {
    display: flex;
    align-items: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.category-links:hover {
    background: #ff904e;
    color: white;
}


/* Carousel Image Height */
.carousel-img {
    height: 600px; /* Adjust as needed */
    object-fit: cover; /* Ensures images fit nicely */
}

/* Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Carousel Overlay */
.carousel-item {
    position: relative;
}


/* Text Positioning */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 500px;
}

/* Heading & Subheading */
.carousel-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.carousel-subheading {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Buy Now Button */
.btn-primary {
    background-color: #E08D28;
    border: none;
    font-weight: bold;
     
  border-radius: 1px !important;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #8B1538;
    transform: scale(1.05);
}

/* Banner Section */
.banner-section {
    background-color: rgba(245, 230, 202, 0.2); /* #F5E6CA with opacity */
    height: 600px; /* Adjust as needed */
    display: flex;
    overflow: hidden;
}

/* Banner Content */
.banner-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
}

.banner-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Button Styling */
.learn-more-btn {
    background-color: #ff904e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px; /* Adds proper spacing */
}

.learn-more-btn:hover {
    background-color: #2d3e0e;
    color: #000;
}



/*category section*/
/* Category Card */
.category-card {
    text-align: center;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
  width: 240px;
    margin-left: 8px;
    
}

.category-card:hover {
    background: #E08D28;
    color: white;
    transform: translateY(-5px);
}

/* Category Icon section */
.category-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #E08D28;
    margin: 0 auto 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.category-card:hover .category-icon {
    background: white;
    color: #8B1538;
}

/* Category Name */
.category-name {
    font-size: 14px;
    font-weight: bold;
}




/*cards section
.custom-card {
    background-color: #F5E6CA;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 2px;
}

.card-offer {
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}

.buy-now-btn {
    background-color: #3A5311;
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background 0.3s;
}

.buy-now-btn:hover {
    background-color: #3e340a;
}

.card-img {
    width: 150px;  /* Set a fixed width 
    height: 150px; /* Set a fixed height 
    object-fit: contain; /* Ensures the whole image fits inside without cropping 
    display: block;
    margin: auto;
}

@media (max-width: 768px) { 
    .feature {
        margin-bottom: 25px; /* Adds space between rows 
    }
    .card-img{
        margin-right: 30px;
    }
    .card-text{
        display: none;
    }
}
*/

/*product section*/
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: left;
}
/* Styling for product card */
.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    position: relative;
    text-align: left;
    height: 100%; /* Ensures all cards take equal height */
}

.product-card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.product-img {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    padding: 5px 8px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.wishlist-btn i {
    color: #666;
    font-size: 18px;
}

/* When liked, turn heart red */
.wishlist-btn.liked i {
    color: red;
}

.product-info {
    padding: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1E4D2B;
    margin-bottom: 0;
}

.product-condition {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* Address and Date Side-by-Side */
.product-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem; /* Reduced font size */
    color: #777;
    text-transform: uppercase;
    border-top: 1px solid #ddd;
    padding-top: 6px;

}
.product-location {
    font-weight: bold;
    font-size: 0.7rem; /* Address font size reduced */
}
.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
    color: #333;
}

.product-date {
    text-align: right;
}


/*promo banner*/
/*promo banner*/
.promo-banner {
    background-color: #ff904e;
    border-radius: 12px;
    padding: 60px 30px;
    text-align: center;
    color: rgb(0, 0, 0);
    position: relative;
    overflow: hidden;
}


.promo-content {
    position: relative;
    z-index: 1;
}

.promo-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.promo-content .btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
}

.promo-content .btn:hover {
    background: #FFC107;
}


/*About section*/
/*About section*/
/* Background with reduced opacity */
.shopping-section {
    background-color: rgba(245, 230, 202, 0.2); /* 90% opacity */
}

/* Shopping Image */
.shopping-img {
    width: 100%;
    max-width: 550px; /* Adjust size */
    height: auto;
}

/* Title */
.shopping-title {
    font-size: 29px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Paragraph Text */
.shopping-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Learn More Button */
.learn-more-btn {
    background-color: #ff904e;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.learn-more-btn:hover {
    background-color: #ff904e;
}

/*footer*/
/*footer*/

/* Footer Styling */
.footer {
    background-color: #4e4e4e;
    color: #ffffff;
 
}


/* Footer Bottom */
.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.footer-bottom .developer {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom .developer:hover {
    text-decoration: underline;
}


/*contact form*/
 /* Form Styling */
/* General Styling */
.contact-heading {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.contact-text {
    font-size: 16px;
    color: #555;
}

.contact-email, .contact-number {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Form Styling */
.contact-form label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.custom-input {
    background: transparent;
    border: none;
    border-bottom: 1px dotted #777;
    font-size: 16px;
    width: 100%;
    padding: 5px 0;
    outline: none;
    transition: border 0.3s;
}

.custom-input:focus {
    border-bottom: 1px solid #000;
}

/* Submit Button */
.submit-btn {
    background: #3A5311;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ffed4a;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-heading {
        text-align: center;
    }
    .contact-text{
        text-align: center;
    }
    .contact-email, .contact-number {
        text-align: center;
        display: block;
    }
    .submit-btn {
        display: block;
        margin: auto;
    }
}

/*buy page*/
.description-card {
    background-color: #D9D6D3;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.description-card:hover {
    transform: translateY(-5px);
}

.description-img {
    width: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

.description-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.description-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
}

.description-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.description-price {
    font-size: 22px;
    font-weight: bold;
    color: #E63946;
}

.description-discount {
    font-size: 18px;
    color: #28a745;
    font-weight: bold;
}

.description-buttons {
    margin-top: 15px;
}

.description-call-btn, .description-whatsapp-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.description-call-btn {
    background-color: #ff904e;
    color: white;
}

.description-call-btn:hover {
    background-color: #0056b3;
}

.description-whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.description-whatsapp-btn:hover {
    background-color: #1da851;
}

/* Media Queries */

/* Large Screens (Desktops & Laptops) */
@media (max-width: 1200px) {
    .description-img {
        width: 350px;
        height: 500px;
    }
}

/* Medium Screens (Tablets & Small Laptops) */
@media (max-width: 992px) {
    .description-img {
        width: 300px;
        height: 450px;
    }

    .description-title {
        font-size: 24px;
    }

    .description-subtitle {
        font-size: 18px;
    }

    .description-text {
        font-size: 15px;
    }
}

/* Small Screens (Tablets in Portrait Mode & Large Phones) */
@media (max-width: 768px) {
    .description-img {
        width: 250px;
        height: 400px;
    }

    .description-title {
        font-size: 22px;
    }

    .description-subtitle {
        font-size: 16px;
    }

    .description-text {
        font-size: 14px;
    }

    .description-price {
        font-size: 20px;
    }

    .description-discount {
        font-size: 16px;
    }

    .description-buttons {
        text-align: center;
    }

    .description-call-btn, .description-whatsapp-btn {
        font-size: 14px;
        padding: 8px 15px;
    }
}

/* Extra Small Screens (Mobile Phones) */
@media (max-width: 576px) {
    .description-img {
        width: 280px;
        height: 350px;

    }

    .description-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .description-subtitle {
        font-size: 14px;
    }

    .description-text {
        font-size: 13px;
    }

    .description-price {
        font-size: 18px;
    }

    .description-discount {
        font-size: 14px;
    }

    .description-buttons {
        flex-direction: column;
    }

    .description-call-btn, .description-whatsapp-btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}


/*login page*/
/*login page*/
.login {
    background: linear-gradient(to right, #8B1538, #E08D28);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login .container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.login .footer {
    margin-top: 20px;
    text-align: center;
    color: white;
}
.login .footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}




/*dashboard page*/
/* General Dashboard Styling */

.dashboard {
    width: 100% !important;
      margin: auto;
      border: 2px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Sidebar Styling */
  .sidebar {
      padding: 25px;
      background: #ff904e; /* Updated sidebar color */
      color: white;
      border-radius: 10px;
      min-height: 100%;
  }
  
  .dashboard-heading {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 25px;
      text-transform: uppercase;
      text-align: center;
  }
  
  .dashboard-menu {
      list-style: none;
      padding: 0;
  }
  
  .dashboard-menu li {
      padding: 12px 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: background 0.3s ease-in-out;
  }
  
  .dashboard-menu li:last-child {
      border-bottom: none;
  }
  
  .dashboard-menu a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      display: block;
      transition: color 0.3s;
  }
  
  .dashboard-menu a:hover {
      color: #FFD700;
  }
  
  .logout-btn {
      width: 100%;
      padding: 12px;
      background: #d9534f;
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s ease-in-out;
  }
  
  .logout-btn:hover {
      background: #c9302c;
  }
  
  /* Content Section */
  .content {
      padding: 25px;
      background: #f9f9f9;
      border-radius: 10px;
  }
  
  /* Forms Styling */
  .dashboard-form {
      background: white;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .dashboard-form h4 {
      margin-bottom: 20px;
      font-weight: bold;
      color: #333;
  }
  
  .dashboard-form .form-group {
      margin-bottom: 20px;
  }
  
  .dashboard-form input, .dashboard-form textarea {
      border-radius: 5px;
      border: 1px solid #ccc;
      padding: 10px;
  }
  
  .dashboard-form input:focus, .dashboard-form textarea:focus {
      border-color: #2a5298;
      box-shadow: 0px 0px 5px rgba(42, 82, 152, 0.5);
  }
  
  /* Buttons */
  .btn {
      margin-right: 10px;
      padding: 10px 15px;
      border-radius: 5px;
      font-weight: bold;

  }
  
  .btn-primary {
      background: #2a5298;
      border: none;
  }
  
  .btn-primary:hover {
      background: #1e3c72;
  }
  
  .btn-success {
      background: #28a745;
      border: none;
  }
  
  .btn-success:hover {
      background: #218838;
  }
  
  .btn-warning {
      background: #ffc107;
      border: none;
  }
  
  .btn-warning:hover {
      background: #e0a800;
  }
  
  .btn-danger {
      background: #dc3545;
      border: none;
  }
  
  .btn-danger:hover {
      background: #c82333;
  }
  
  /* Manage Listing Table */
  .manage-listing-table {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #ddd;
  }
  
  .manage-listing-table thead {
      background: #2a5298;
      color: white;
  }
  
  .manage-listing-table th {
      padding: 12px;
      text-align: left;
      font-weight: bold;
  }
  
  .manage-listing-table td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
      background: #fff;
  }
  
  .manage-listing-table img {
      border-radius: 5px;
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  
  /* File Input */
  .file-input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      border: 1px solid #ddd;
      border-radius: 5px;
      overflow: hidden;
      background: #fff;
      padding: 5px 10px;
      cursor: pointer;
  }
  
  .file-input-wrapper input[type="file"] {
      position: absolute;
      left: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
  }
  
  .file-label {
      font-size: 16px;
      color: #333;
      flex-grow: 1;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
  }
  
  .browse-btn {
      background: #007bff;
      color: white;
      padding: 5px 15px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      border: none;
  }
  

  /* Logout button - centered */
.logout-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.logout-btn button {
    background: #d9534f; /* Red background */
    border: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%; /* Full width */
    padding: 2px; /* Good spacing */
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
}

.logout-btn button i {
    font-size: 18px;
}

.logout-btn button:hover {
    background: #c9302c;
}

  .browse-btn:hover {
      background: #0056b3;
  }
  @media (max-width: 768px) {
    .content, .dashboard {
        padding: 0 !important;
        background: none !important;
    }
}




@media (max-width: 768px) {
    .dashboard-menu {
        display: flex;
        justify-content: center;
        padding: 10px;
        width: 90%;
        position: fixed;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.95);
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        transition: transform 0.3s ease-in-out;
    }

    .dashboard-menu.hide {
        transform: translateY(100%);
    }

    .menu-items {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .menu-items li {
        flex: 1;
        text-align: center;
        list-style: none;
    }

    .menu-items li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: #ff904e;
        font-size: 20px;
        padding: 4px;
        border-radius: 50%;
        transition: color 0.3s ease-in-out;
        width: 100%;
        text-decoration: none;
    }

    .menu-items li a i {
        font-size: 22px;
    }

    .menu-items li a span {
        font-size: 10px;
        font-weight: 500;
        margin-top: 3px;
        color: #000000;
    }

    .menu-items li a:hover {
        color: #005504;
    }
}
