
.option {
  width: 80%;
  max-width: 600px;
  text-align: left;
  margin: 10px 0;
  padding: 12px;
  border: 2px solid #0071bb; /* primary blue */
  border-radius: 12px;
  background: #f4f7fa;       /* background color */
  color: #333;               /* text color */
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

h1 {
  text-align: center;
}
h2 {
  font-size: 14px;
}

h3{ 
  font-size: 18px;
}

.option .content {
  display: none;
  margin-top: 10px;
} 

.option:hover {
  background: white;
  color: black;
}

#flowContainer button.backBtn {
  background-color: #888888; /* medium gray */
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

#flowContainer button.backBtn:hover {
  background-color: #555555; /* darker gray on hover */
}

.claim-menu-wrapper {
  display: flex;
  justify-content: center;  /* centers the columns in the wrapper */
  align-items: flex-start;
  gap: 60px;                /* space between columns */
  margin: 0 auto;
  max-width: 1300px;
}

.guidance-column { 
  width: 500px;        
}

/*Need Guidance button */
#showFlowBtn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #0071bb, #023047); /* gradient for pop */
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

#showFlowBtn:hover {
  background: linear-gradient(135deg, #005f99, #011f33);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

#showFlowBtn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.options-column{
  width: 800px;
}

/* Options (right column) */
.claim-options-wrapper {
  flex: 2;
}

/* Flow Chart Container */
#flowContainer {
  display: none; /* hidden until button click */
  margin-top: 20px;
  padding: 15px;
  border: 2px solid #0071bb;
  border-radius: 12px;
  background: #f4f7fa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Each step inside flow chart */
.flow-step {
  margin-bottom: 15px;
  padding: 10px;
  border-left: 4px solid #0071bb;
  background: #fff;
  border-radius: 8px;
}

.flow-step p {
  margin-bottom: 10px;
  font-weight: 500;
  color: #023047; /* secondary dark blue */
}

/* Buttons inside flow chart steps */
.flow-step button {
  margin: 5px 5px 0 0;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background-color: #0071bb;   /* primary blue */
  color: #fff;                 /* nav-text-color */
  cursor: pointer;
  transition: background 0.3s;
}

.flow-step button:hover {
  background-color: #023047;   /* super navy-teal */
}

@media (max-width: 900px) {
  .claim-menu-wrapper {
    flex-direction: column;
    align-items: center;       /* center columns */
    justify-content: center;   /* center horizontally */
    gap: 10px;                 /* smaller gap */
    margin: 0 auto;
    padding: 0 10px;           /* small padding on sides */
  }
  
  .guidance-column,
  .options-column {
    width: 96%;       /* slightly less than full width */
    max-width: 400px; /* reduce max-width a bit */
    margin: 0 auto;   /* keep centered */
  }

   #showFlowBtn {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    padding: 12px 18px;
    margin: 20px auto;         /* center */
  }

  .option {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
  }

  .flow-step button {
    width: 100%;
    margin: 5px 0;
  }
}

