html,
body {
  height: 100%;
  /* Make the page take full height */
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  /* Pushes the footer to the bottom */
  margin: 0;
  padding: 0;
}

.dropdown-toggle::after {
  content: none;
}

.subtle-shadow {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product_id {
  color: gray;
  font-size: 15px;
}

.badge.bg-warning.text-dark {
  position: absolute;
  top: 10px;
  right: 5px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.badge-banner {
  top: 80%;
  border-radius: 15px;
  font-size: 0.7rem;
}


.nav-item::marker {
  content: none;
}


.dropdown-item:hover,
.dropdown-item:focus {
  background-color: white !important;
  /* Ensures the background is white */
  color: black !important;
  /* Ensures the text remains black */
}


footer {
  background-color: black;
}

/* Google and Facebook Login */

.google-signin-title {
  color: black;
  text-align: center;
  font-weight: bold;
}

.google-btn {
  background-color: black;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.google-btn:hover {
  background-color: #333;
  /* Slightly lighter black */
}

.google-btn i {
  margin-right: 8px;
}