/* CRUSADE: BSMD Header Colors (blue-gray gradient) */
.header-band {
   background: linear-gradient(to right,
    #2c3e50,   /* deep navy-slate */
    #415a68,   /* your anchor blue-gray */
    #6e8594,   /* mid steel blue */
    #c0ccd6    /* light silvery blue */
  );
    padding-bottom: 15px;
    padding-left: 5%;
    text-align: left;
}

.header-band-blue {
    background: #415a68;
    padding-bottom: 15px;
    text-align: left;
    color: white;
}

/* Anchor Offset to Account for Sticky Navigation */
.anchor-offset {
    display: block;
    position: relative;
    top: -75px;  /* Adjust if sticky nav height changes */
    visibility: hidden;
}

/* Button Styling for CNSU BSMD */
.btn-primary-custom-ready-apply {
    background-color: #c59607;   /* CNSU mustard */
    border-color: #c59607;
    color: black;
    font-size: 1.3em;
    padding: 15px 30px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary-custom-ready-apply:hover {
    background-color: black;
    color: white;
}

/* ===== BSMD Custom List + Buttons (blue/gray variant) ===== */

/* Custom List Styling for Checkbox Look */
.custom-list {
  list-style-type: none;
  padding-left: 0;
}
.custom-list li {
  padding: 10px 0;
  position: relative;
  padding-left: 35px;
}
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #415a68;   /* swapped from #047940 green */
  border-radius: 3px;
  box-sizing: border-box;
}

/* Primary Button (mustard stays same for CNSU) */
.btn-primary-custom {
  background-color: #c59607;
  border-color: #c59607;
  color: black;
  font-size: 1.5em;
  padding: 15px 30px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: black;
  color: white;
}

/* Group container */
.btn-group-custom {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

/* Secondary Button (blue/gray instead of green) */
.btn-secondary-custom {
  background-color: #6e8594;   /* mid steel blue */
  border-color: #6e8594;
  color: white;
  font-size: 1.2em;
  padding: 10px 20px;
  text-align: center;
  width: 100%;        /* adjust/remove as needed */
  max-width: 100%;
  transition: background-color 0.3s ease;
  word-wrap: break-word;
  white-space: normal;
}
.btn-secondary-custom:hover {
  background-color: #415a68;   /* darker hover */
  color: white;
}

/* Fixed Apply Button (bottom right) */
.apply-fixed-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #415a68;   /* dark steel blue */
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px 0 0 0;
  cursor: pointer;
  z-index: 1000;
  margin-right: 1px;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.apply-fixed-btn a {
  text-decoration: none;
  color: inherit;
  font-size: 18px;
}

.apply-fixed-btn:hover {
  background-color: #6e8594;   /* lighter gray-blue on hover */
  color: #fff;
}

.step-title {
   background: linear-gradient(135deg, #001f3f, #415a68);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(31, 59, 113, 0.3);
    box-sizing: border-box;
}
			.custom-table td:first-child {
  font-weight: 600;  /* Bold first column */
  white-space: nowrap;
}

.custom-table tbody tr:nth-child(odd) {
  background-color: #f8f9fa; /* Light gray for odd rows */
}

.custom-table tbody tr:nth-child(even) {
  background-color: #ffffff; /* White for even rows */
}