*,
*:before,
*:after {
  box-sizing: border-box;
}

#nutrition-form {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;  
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nutrition-form label{
  font-family: 'Poppins';
  color: #489F10;
  font-size: 17px;
  font-weight: 600;
}

input[type="text"],
input[type="number"] {
  padding: 5px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="number"]:focus {
  border-color: #4bc970;
  outline: none;
}

.gender-options {
  margin-bottom: 15px;
}

input[type="radio"] {
  margin-right: 10px;
}
.buttons{
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.buttons button {
  border: none;
  color: #222;
  font-family: 'Poppins';
  line-height: 50px;
  padding: 0 60px;
  font-weight: 600;
  font-size: 14px;
  margin: 10px;
}

#result {
  margin-top: 20px;
  padding: 15px;
  /* background-color: #e9f7ef; */
  border-radius: 5px;
  /* border: 1px solid #4bc970; */
}

hr.hr-style {
  border-top: 1px dashed #858282;
  padding-bottom: 20px;
}

.modal-dialog {
  width: 80%; /* Full width */
  height: 80%; /* Full height */
  margin: 20%; /* Remove margins */
  overflow: auto; /* Allow scrolling if necessary */
}
@media screen and (min-width: 480px) {
  #nutrition-form {
    max-width: 80%;
  }
}

.macronutrients-table th,
.vitamins-table th,
.essential-minerals-table th,
.non-essential-minerals-table th,
.user_detail th,
.supplement_suggestions th,
.calculated_detail th{
  background-color: #ddd;
  font-weight: bold;
  padding: .25em;
  text-align: center;
  border: 1px solid black;
}
table td, table th {
  border: 1px solid #000000 !important;
}


.btn-primary:hover {
  color: #fff !important;
  background-color: #489f10 !important;
  border-color: #489f10 !important;
}

.suggestion_pdf{
  box-shadow: none;
  text-decoration: underline !important;
  font-weight: 600;
  color: #2C6CCA;
  font-size: 18px;
}
