/* Navbar styling */
.navbar {
  background-color: #ffffff;
  padding: 0.5rem 1rem;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: #476DB0;
  background-color: transparent;
  transition: color 0.3s;
  text-decoration: none; /* Remove default underline */
}

.nav-link:hover,
.nav-link:focus {
  color: black;
}

.nav-link.active {
  font-weight: bold;
  color: black;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-color: #4CB047; /* Green underline */
}

/* Custom button styling for Log In and Sign Up */
.btn-log-in {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #476DB0;
  background-color: white;
  border: 2px solid #476DB0;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-log-in:hover {
  background-color: #e6f0ff;
  color: #365A96;
}

.btn-sign-up {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: white;
  background-color: #476DB0;
  border: 2px solid #476DB0;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-sign-up:hover {
  background-color: #365A96;
  color: #ffffff;
}

/* Dropdown toggle button styling */
.navbar .dropdown-toggle {
  background-color: #476DB0;
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 20px;
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:hover {
  background-color: #365A96;
  color: #ffffff;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
  top: 100%;
  right: 0;
  background: #476DB0;
  border-radius: 5px;
  color: #ffffff;
  padding: 8px;
  min-width: 160px;
  z-index: 1000;
}

.navbar .dropdown-menu .dropdown-item {
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #365A96;
}

/* Icon styling within dropdown items */
.navbar .dropdown-menu .dropdown-item .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Styling for uploads info section */
.uploads-info {
  border: 1px solid #476DB0;
  width: max-content;
  padding: 8px 12px;
  border-radius: 5px;
  text-align: center;
  margin-right: 2rem;
}

.uploads-text {
  font-size: 16px;
  font-weight: bold;
}

/* Buy more button styling */
.buy-more-btn {
  color: #4CB047;
  font-weight: bold;
  text-decoration: none;
}

.buy-more-btn .cart-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.buy-more-btn:hover {
  text-decoration: underline;
}



/* Footer */
.footer {
  background-color: #476DB0;
  color: white;
  padding: 1rem 0;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-top: 3rem;
}

.footer .footer-icon {
  width: 80px;
  height: auto;
  margin-right: 1rem;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .footer-link {
  color: white;
  text-decoration: none;
}

.footer .dot-separator {
  color: #4CB047;
}

.footer .company-info {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer .footer-email {
  color: white;
  text-decoration: none;
}

.footer .footer-email:hover,
.footer .footer-link:hover {
  text-decoration: underline;
}
