  #symptomContainer {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    flex-direction: column; /* Align children vertically */
    margin: 0 auto; /* Optional: Center horizontally within its parent */
    width: 80%; /* Adjust as needed */
}
.symptom-check-modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.symptom-check-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.symptom-check-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.symptom-check-close:hover,
.symptom-check-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

  .symptom-recommendation {
    position: relative;
    text-align: center;
    padding: 6em 20px 20px 20px; /* Adjusted padding: top, right/bottom/left */
    margin-bottom: 20px; /* Add margin bottom for space between boxes */
    
    border: 1px solid black;
    border-radius: 10px;
    box-sizing: border-box;  /* This makes sure padding and border are included in total width/height */
}


.symptom-recommendation::before {
    content: "\f51c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;  /* Adjusted top positioning */
    left: 50%;
    transform: translateX(-50%);
    font-size: 5em;
    opacity: 0.5;
}
/* Custom checkbox styles */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #555; /* border color */
    border-radius: 8px; /* border radius */
    width: 20px; /* checkbox width */
    height: 20px; /* checkbox height */
    margin-right: 10px; /* spacing between checkbox and label */
    cursor: pointer; /* cursor style */
    /* Add padding to adjust the size of the checkbox */
    padding: 0;
}

/* Custom checkbox checked state styles */
input[type="checkbox"]:checked {
    /* Use a custom background to simulate the tick mark */
    background-color: #2ecc71; /* Green color when checked */
}
 .symptom-buttons {
  display: flex;
  justify-content: center;
  align-items: center; /* Center vertically */
}
.symptom-buttons .symptom-nav-button {
  margin: 0 10px; /* Adjust spacing between buttons if needed */
}
    .symptom-buttons .previous-symptom-button {
        display: none;
    }
    .symptom-buttons button {
        margin: 0 10px; /* Adjust spacing between buttons if needed */
    }
    .symptom-nav-button {
  display: inline-block;
  background-color: #fff;
  color: rgba(28, 76, 84, 0.8);
  padding: 15px 20px;
  border: 2px solid rgba(28, 76, 84, 0.8);
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 0;
  transition: transform 0.2s;

}
.symptom-nav-button {
  font-family: 'Open Sans', sans-serif;
  display: inline-block;
  background-color: rgba(28, 76, 84, 0.8); /* Making the original color a bit transparent */
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  margin: 20px 0; /* Adjust as needed */
  transition: transform 0.2s;
}

.symptom-nav-button:hover {
  transform: translateY(-5px); /* Lifts the box slightly on hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1); /* Slightly larger shadow on hover */
}
.next-symptom-nav::after {
  content: "\e5cc"; /* Unicode for the chevron_right symbol */
  font-family: "Material Icons"; /* Specify the font family */
  display: inline-block;
  font-size: 24px; /* Adjust the font size as needed */
  vertical-align: middle; /* Align the symbol vertically with the text */
}
.prev-symptom-button::before {
  content: "\e5cb"; /* Unicode for the chevron_left symbol */
  font-family: "Material Icons"; /* Specify the font family */
  display: inline-block;
  font-size: 24px; /* Adjust the font size as needed */
  vertical-align: middle; /* Align the symbol vertically with the text */
}
.submit-button::after {
  content: "\e163"; /* Unicode for the send symbol */
  font-family: "Material Icons"; /* Specify the font family */
  font-size: 24px; /* Adjust the font size as needed */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.symptom-category-info-box {
    border: 2px solid #000;
    padding: 10px;
    margin: 10px;
    background-color: transparent;
    width: calc(100% - 24px);
    box-sizing: border-box;
    border-radius: 10px;
    position: relative; /* Added so the ::before pseudo-element is positioned relative to this box */
    text-align: center; /* Centers the content inside */
}
.symptom-category-info-box::before {

 content: "\f0ae"; /* Unicode for the Font Awesome icon */
    font-family: "Font Awesome 5 Free"; /* Specify the Font Awesome font family */
    font-weight: 900; /* This might be needed depending on the specific version/style of Font Awesome you're using */
    font-size: 5em;
    opacity: 0.5;
    display: block; /* Will make it behave like a block element */
    margin-bottom: 10px; /* Space between the icon and the content below */
    
}