/* Add these styles to your splash.css file */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Use viewport height to ensure full page coverage */
  align-items: center; /* Center horizontally */
}

.abstract-header {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/wave-green-top.svg");
  flex-shrink: 0; /* Prevent the header from shrinking */
}

.button-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* This makes the container expand and take available space */
  justify-content: center; /* Center the content vertically */
  padding: 12px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.abstract-footer {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/wave-orange-bottom.svg");
  flex-shrink: 0; /* Prevent the footer from shrinking */
}

.header-card {
  background-color: white;
  padding: 18px;
  border-radius: 5px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
  border-top: 1px black solid;
  border-left: 1px black solid;
  border-right: 1px black solid;
}

a {
  all: unset;
  display: flex;
  gap: 12px;
  border-bottom: var(--border-color) 6px solid;
  font-family: "Signika Negative", sans-serif;
  text-align: left;
  align-items: center;
  cursor: pointer; /* Add cursor to indicate it's clickable */
  min-height: 100px;
  flex-wrap: nowrap; /* Prevent wrapping */
  padding-right: 12px; /* Add some padding on the right for the arrow */
}

/* Better title handling */
a h2 {
  flex: 1;
  min-width: 0; /* Allow text to shrink if needed */
}

/* Fix the image path for the arrow images */
a img[src$="arrow.svg"] {
  align-self: center; /* Center the arrow vertically */
  margin-left: auto; /* Push arrow to the right */
  flex-shrink: 0; /* Prevent the arrow from shrinking */
}


/* Fix the image path for the arrow images */
a img[src$="arrow.svg"] {
  align-self: center; /* Center the arrow vertically */
  margin-left: auto; /* Push arrow to the right */
}
