/* Custom styles for our website */
.site-header {
  background-color: #2c3e50;
  color: white;
}

.site-header h1 {
  margin: 0;
  color: white;
}

.site-navigation a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 3px;
  transition: background-color 0.3s;
}

.product-image {
  text-align: center;
  margin-bottom: 1rem;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

table.table {
  border-collapse: collapse;
  width: 100%;
}

table.table td {
  border: 1px solid #ddd;
}

.site-footer {
  background-color: #ecf0f1;
  padding: 2rem 0;
  border-top: 1px solid #bdc3c7;
}
/* Banner Carousel Styles */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  width: 100%;
}

.carousel-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.carousel-content p {
  font-size: 1.2rem;
  margin: 0;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}
