.carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  margin: 20px auto;
  overflow: hidden;
  border: 5px solid #4d5770;
  border-radius: 50px;
}

.carousel-track-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  padding: 0 10px;
}

.left-button {
  left: 10px;
}

.right-button {
  right: 10px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 400px) {
  .carousel {
    height: 210px;
  }

  .carousel-slide img {
    margin-top: -20px;
  }

}

.fb-page-container {
  margin: 40px auto;      /* Adds spacing around the plugin */
  padding: 20px;          /* Adds inner spacing within the container */
  max-width: 500px;         /* Ensures the container does not exceed the screen width */
  background-color: #4d5770; /* Optional: Add a light background for contrast */
  border-radius: 50px;    /* Optional: Add rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  text-align: center;     /* Centers the plugin inside the container */
}

.fb-page {
  max-width: 100%;        /* Ensures the plugin is responsive */
  overflow: auto;         /* Enables scrolling if necessary */
}


