/* General styles for body and layout */
body {
  margin: 0px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column; /* Stack header, content, and footer vertically */
  min-height: 100vh; /* Ensures the body covers the full viewport height */
  background-color: #f1fafe;
  width: 100%;
}

header {
  position: relative;
  top: 0;
  width: 100%;
  height: 60px;
}
.header1 {
  background-color: #506b76;
  text-align: left;
  vertical-align: middle;
  padding: 10px;
  color: #f1fafe;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: bold;
}
.header2 {
  background-color: #cedbe0;
  text-align: right;
  padding: 10px;
  color: #03161e;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-align: right;
  font-weight: bold;
}

#container {
  position: relative;
}
#column-left {
  width: 480px;
  background-color: #03161e;
}
#column-right {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: 250px;
  overflow: auto;
}

.bodycontainer {
  position: relative;
}

/* Footer styles */
footer {
  background-color: #f4f4f4;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto; /* Ensures footer sticks at the bottom of the page */
}
/* Container for centering and max width */
.footercontainer {
  max-width: 100%; /* Restricts the width for large screens */
  margin: 0 auto; /* Centers the content */
}

.swiper-container {
  position: relative; /* Keep pagination and buttons inside */
  width: 100%; /* Ensure it doesn’t expand beyond the container */
  max-width: 100%; /* Prevent it from exceeding the parent */
  overflow: hidden; /* Hide overflowing slides */
  box-sizing: border-box; /* Prevent unwanted expansion */
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0; /* Prevent slides from shrinking */
  width: auto; /* Let Swiper control width */
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
</style>