<<<<<<< HEAD
/* Apply a font to the entire document */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px; /* Matches the height of the fixed navbar */
    margin: 0;
    padding: 0;
    
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Sidebar hidden to the left */
    width: 250px; /* Adjust width to your preference */
    height: 100%;
    background-color: #f8f9fa; /* Light background */
    z-index: 1100; /* Make sure it stays above other content */
    transition: left 0.3s ease-in-out; /* Smooth sliding transition */
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Shadow for better visibility */
}

.sidebar.active {
    left: 0; /* Slide in the sidebar */
}

/* Mobile Sidebar Button */
.sidebar-btn {
    position: fixed;
    top: 10px;
    left: 0px;
    font-size: 30px;
    z-index: 1000; /* Above the content, but below the sidebar */
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Sidebar close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

/* Sidebar logo styling */
.sidebar .logo img {
    max-width: 100px;
    max-height: 80px;
}

/* Navigation link styling */
.nav-link {
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #f1c1c1; /* Light red background on hover */
    color: #fff; /* Text color changes to white */
}

/* Sidebar button for mobile view */
#openSidebar {
    font-size: 30px;
    background-color: transparent;
    border: none;
    position: 250px;
    top: 20px;
    left: 20px;
    z-index: 999; /* Ensure the button is above other content */
    cursor: pointer;
    color: red;
    display: none;
}

/* Main content styling */




/* Small screen adjustments */
@media (max-width: 769px) {
    .sidebar {
        left: -100%; /* Hide the sidebar completely on small screens */ 
    }

    .sidebar.active {
        left: 0; /* Sidebar covers full screen on small devices */
    }

    /* Content doesn't shift on mobile when the sidebar opens */
    .main-content {
        margin-left: 0;
    }

    #openSidebar {
        display: block; /* Show the sidebar toggle button on mobile */
        left: 20px;
        top: 20px;
        position: fixed;
    }
}

/* Footer styles */
.footer {
    background-color: white !important;
    color: black !important;
    text-align: center;
    padding: 15px 0;
}

.footer a {
    color: black !important;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


.nav-link bi-calendar-event {
    color: royalblue;
}

/* Container for search icon and bar */
/* .search-container {
    position: relative;
    display: flex;
    align-items: center;
} */

/* Initially, the search bar is hidden */
/* .search-bar-container { */
    /* display: flex; Hidden by default */
    /* width: 100%; Full width of the parent */
/* } */

/* Optional styling for the search icon */
/* #searchIcon {
    cursor: pointer;
    font-size: 24px;
    margin-left: 150px;
    color: black;
    position:static;
} */

/* Search Bar Styles */
.input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Search input field styling */
#search-input {
    width: 100%; /* Ensure it takes full width */
    padding: 10px;
    font-size: 1rem;
}

/* Button (with search icon) inside the search input */
.btn-outline-secondary {
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Custom container for sold-out message */
.sold-out-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Custom styles for the paragraph */
.paragraph {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Style the primary button */
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Custom container styling for the cart page */
.cart-container {
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.cart-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #343a40;
}

/* Cart item styling */
.cart-item {
    border-radius: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cart items */
.cart-item:hover {
    background-color: #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Cart item title styling */
.cart-item-title {
    color: #212529;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
}

/* Empty cart message styling */
.empty-cart-msg {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #6c757d;
}

/* Add these styles to your CSS file */
.back-arrow-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px;
    font-size: 24px;
    color: #e72a2a;
    background-color: #6c757d;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.back-arrow-button:hover {
    background-color: #f13c3c;
}

/* Font Awesome specific styling if using Font Awesome icons */
.fas.fa-arrow-left {
    margin: 0;
    font-size: 40px;
}

/* Logo container */
.logo-container {
    position: fixed; /* Fix the logo to the top of the screen */
    top: 0; /* Align it to the top */
    left: 0; /* Align it to the left */
    z-index: 1000; /* Ensure it stays above other elements */
    background-color: white; /* Optional: add a background for better visibility */
    padding: 5px; /* Add some padding if needed */
    width: 100%; /* Make the container span the full width */
    text-align: center; /* Center the logo within the container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: add shadow for depth */
}

/* Logo image */
.fixed-logo {
    height: 50px; /* Adjust the height to fit the mobile screen */
    max-width: 100%; /* Ensure it scales properly */
}



=======
/* Apply a font to the entire document */
body {
    font-family: 'Roboto', sans-serif;
    padding-top: 70px; /* Matches the height of the fixed navbar */
    margin: 0;
    padding: 0;
    
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Sidebar hidden to the left */
    width: 250px; /* Adjust width to your preference */
    height: 100%;
    background-color: #f8f9fa; /* Light background */
    z-index: 1100; /* Make sure it stays above other content */
    transition: left 0.3s ease-in-out; /* Smooth sliding transition */
    overflow-y: auto; /* Allow scrolling if content overflows */
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Shadow for better visibility */
}

.sidebar.active {
    left: 0; /* Slide in the sidebar */
}

/* Mobile Sidebar Button */
.sidebar-btn {
    position: fixed;
    top: 10px;
    left: 0px;
    font-size: 30px;
    z-index: 1000; /* Above the content, but below the sidebar */
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Sidebar close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

/* Sidebar logo styling */
.sidebar .logo img {
    max-width: 100px;
    max-height: 80px;
}

/* Navigation link styling */
.nav-link {
    padding: 10px 15px;
    color: black;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #f1c1c1; /* Light red background on hover */
    color: #fff; /* Text color changes to white */
}

/* Sidebar button for mobile view */
#openSidebar {
    font-size: 30px;
    background-color: transparent;
    border: none;
    position: 250px;
    top: 20px;
    left: 20px;
    z-index: 999; /* Ensure the button is above other content */
    cursor: pointer;
    color: red;
    display: none;
}

/* Main content styling */




/* Small screen adjustments */
@media (max-width: 991.98px) { /* matches Bootstrap's lg breakpoint */
    .main-content {
      padding-top: 80px; /* Enough space for the fixed navbar */
      padding-left: 15px;
      padding-right: 15px;
    }
  }

/* Footer styles */
.footer {
    background-color: white !important;
    color: black !important;
    text-align: center;
    padding: 15px 0;
}

.footer a {
    color: black !important;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


.nav-link bi-calendar-event {
    color: royalblue;
}


/* Search Bar Styles */
.input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Search input field styling */
#search-input {
    width: 100%; /* Ensure it takes full width */
    padding: 10px;
    font-size: 1rem;
}

/* Button (with search icon) inside the search input */
.btn-outline-secondary {
    background-color: transparent;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Custom container for sold-out message */
.sold-out-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Custom styles for the paragraph */
.paragraph {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Style the primary button */
.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Custom container styling for the cart page */
.cart-container {
    max-width: 600px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title styling */
.cart-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #343a40;
}

/* Cart item styling */
.cart-item {
    border-radius: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cart items */
.cart-item:hover {
    background-color: #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Cart item title styling */
.cart-item-title {
    color: #212529;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
}

/* Empty cart message styling */
.empty-cart-msg {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #6c757d;
}


/* Logo container */
.logo-container {
    position: fixed; /* Fix the logo to the top of the screen */
    top: 0; /* Align it to the top */
    left: 0; /* Align it to the left */
    z-index: 1000; /* Ensure it stays above other elements */
    background-color: white; /* Optional: add a background for better visibility */
    padding: 5px; /* Add some padding if needed */
    width: 100%; /* Make the container span the full width */
    text-align: center; /* Center the logo within the container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: add shadow for depth */
}

/* Logo image */
.fixed-logo {
    height: 50px; /* Adjust the height to fit the mobile screen */
    max-width: 100%; /* Ensure it scales properly */
}

.main-content {
    margin-left: auto;

    /* Custom padding for Main Content to ensure no content is covered */

    padding-top: 100px;
    /* You can increase this value further if needed */
  }

  .blurred {
    filter: blur(10px);
    /* Adjust the blur level */
    pointer-events: none;
    /* Prevent interactions */
    user-select: none;
    /* Prevent text selection */
  }

  /* Overlay Background */
  #blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  /* Role Selection Card */
  .role-card {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    text-align: center;
  }

  /* Role Buttons */
  .role-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    font-size: 1rem;
    border-radius: 8px;
    background: #db5151;
    color: white;
    font-weight: 600;
    transition: background 0.3s ease-in-out, transform 0.2s;
    border: none;
  }

  .role-btn:hover {
    background: #db5151;
    transform: translateY(-2px);
  }

  /* Vendor Fields */
  .vendor-fields {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu {
    z-index: 1000;
    /* Ensure it appears above other elements */
  }

  /* Responsive Design */
  @media (max-width: 576px) {
    .role-card {
      width: 95%;
      padding: 20px;
    }

    .role-btn {
      font-size: 0.9rem;
      padding: 10px;
    }
  }

  /* Ensure dropdown menu is visible on small screens */
  @media (max-width: 768px) {
    .dropdown-menu {
      position: absolute;
      right: 0;
      left: auto;
      /* Align to the right on small screens */
    }
  }

  /* Add a hover effect to dropdown items */
  .dropdown-item:hover {
    background-color: #f8f9fa;
    /* Light gray background on hover */
    color: #dc3545;
    /* Red text on hover */
  }

  /* Ensure the dropdown button is visible */
  .btn-outline-danger {
    white-space: nowrap;
    /* Prevent text wrapping */
  }



>>>>>>> 0f95afaa88d9f044a0d17939f552d570d6db3893
