body {
  background: #1a1a2e;
  color: #f8fbff;
  font-family: Montserrat, Arial, sans-serif;
  margin: 0;
}

.main-container {
  background-color: #1a1a2e;
  min-height: 100vh;
  width: 100%;
}

.page-header {
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid #343E59;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Positions .left and .right on opposite ends */
  /* max-width: 1280px; */
  /* Or match your #wrapper width */
  margin: 0 auto;
  /* Centers the header content */
  padding: 0 15px;
  /* Adds some padding if content inside wrapper has it */
  width: 100%;
  /* Ensures it's responsive within the max-width */
}

.header-logo {
  height: 50px;
  width: auto;
  /* display: block; Removed as it's now a flex item */
}

.header-content .left {
  display: flex;
  align-items: center;
  /* Vertically aligns items in .left */
  gap: 15px;
  /* Space between logo and h1 */
}

.page-header h1 {
  font-size: 1em;
  color: #e0e0e0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid #55d4ff;
  line-height: 3em;
}

.body-bg {
  background: #F3F4FA !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 600;
}


.content-area {
  max-width: 1280px;
  margin: 0 auto;
}

.box {
  background-color: #2B2D3E !important;
  padding: 25px 20px;
}

.shadow {
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
}

.sparkboxes .box {
  padding-top: 10px;
  padding-bottom: 10px;
  text-shadow: 0 1px 1px 1px #666;
  box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
  position: relative;
  border-radius: 5px;
}

.sparkboxes .box .details {
  position: absolute;
  color: #fff;
  transform: scale(0.7) translate(-22px, 20px);
}

.sparkboxes strong {
  position: relative;
  z-index: 3;
  top: -8px;
  color: #fff;
}


.sparkboxes .box1 {
  background-image: linear-gradient(135deg, #2f7b9f 10%, #55d4ff 100%);
}

.sparkboxes .box1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  /* background: url("./img/global_entry.png") no-repeat 100% 250% / 50%; */
}

footer {
  text-align: center;
  padding: 20px 0;
  color: #ccc;
  font-size: 0.9em;
  border-top: 1px solid #343E59;
  /* Matches header border */

}

.sparkboxes .box2 {
  background-image: linear-gradient(135deg, #503cc4 10%, #4C83FF 100%);
}

.sparkboxes .box3 {
  background-image: linear-gradient(135deg, #b83332 10%, #FD6585 100%);
}

.sparkboxes .box4 {
  background-image: linear-gradient(135deg, #EE9AE5 10%, #5961F9 100%);
}

/* Added for sidebar layout and new elements - Start */
#wrapper {
  display: flex;
}

#sidebar {
  width: 240px;
  background-color: #222533; /* Slightly different from main content boxes */
  padding: 20px;
  /* height: calc(100vh - 175px); Removed */
  /* overflow-y: auto; Removed */
  color: #e0e0e0;
  border-right: 1px solid #343E59;
  flex-shrink: 0; /* Prevent sidebar from shrinking */
}

#sidebar h3 {
  color: #55d4ff; /* Accent color */
  margin-top: 0;
  border-bottom: 1px solid #4a4e69;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.15em;
  font-weight: 600;
}

#sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#sidebar ul li a {
  color: #bdc3c7;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  margin-bottom: 5px; /* Space between items */
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
  font-size: 0.95em;
}

#sidebar ul li a:hover,
#sidebar ul li a.active { /* Add .active class via JS for current page */
  background-color: #343E59;
  color: #ffffff;
  padding-left: 20px; /* Indent on hover/active */
}

.content-area {
  flex-grow: 1;
  padding: 0 20px; /* Horizontal padding for content within content-area */
}

/* Styles for the new logo and calendar container */
.logo-calendar-container {
  text-align: center;
  padding: 25px 0;
  margin-bottom: 25px; /* Space before the map */
  border-bottom: 1px solid #343E59;
}

#all-logos-img {
  display: block;
  margin: 0 auto 25px auto; /* Centered, with bottom margin */
  max-width: 50%; /* Adjust as needed, or use a pixel value like max-width: 450px; */
  height: auto;
}

#moved-calendar-img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  border: 2px solid #89c4ef;
  border-radius: 8px;
}
/* Added for sidebar layout and new elements - End */

footer p {
  margin-top: 0; 
  margin-bottom:0;
}