/* ======WIRE FRAME======= */

html,body {
  margin: 0;
  padding: 0;
  /* height: 100%; */
  /* width: 100%; */

  height: 100vh;
  width: 100vw;
  /* Optional but often helpful */
  overflow-x: hidden;
}



.main-body-grey {
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);

  /* background-color: grey; */

  /* position: relative; */

  /* min-height: 100vh; */
  width: 100vw;
  height: 100vh;
  min-height: 500px;
 
  border-color: rgb(210, 209, 209);
  padding-left: 0px;
  padding-right: 0px;

  /* flex-grow: 1; */

}

.full-width-container {
  display: flex;
  flex-direction: column;
  /*accross*/
  justify-content: center;
  /*content centered left to right*/
  /* background-color: white; */
  /* opacity: .5; */
  border: solid 1px;
  /* border-bottom: 1px; */
  border-color: rgb(247, 244, 244);
  border-style: dashed;
  margin-top: 20px;
  margin-bottom: 20px;
  /* height: 200px; */
  gap: 3px;
  /* padding kicks in */

}


.centered-container-horizontal {
  /* we ue this as the main content container with padding side to side etc */

  display: flex;
  flex-direction: row;
  /*items in this container are left to right*/
  width: 100%;
  max-width: 1150px;
  box-sizing: border-box;
  padding: 5px;

  /* height: 150px; */


  border: solid 1px;
  border-color: rgb(247, 244, 244);
  border-style: dashed;
  margin-left: auto;
  /*this keeps the div centered left to right, refer to wireframe*/
  margin-right: auto;
  /* margin-top: 3px; */
  /* margin-bottom: 3px; */

  font-family: "halyard-display", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 20px;
  color: #2e2e2e;
  align-items: center;
  justify-content: flex-start;
  /*content centered top to bottom*/
  /*align-items: stretch; /*stretch items to take up the whole height
    /*align-items: flex-start; /*sit items at the top of the container
    /*align-items: flex-end; /*sit items at the bottom of the container
    /*align-items: baseline; /*this aligns items by their text baseline


    justify-content: center; /*content centered left to right*/
  /* justify-content: flex-start;  */
  /* justify-content: flex-end;  */
  /* justify-content: space-between;  */
  /* justify-content: space-around;  */
  /* justify-content: space-evenly;  */
  /* background-color: black; */
  /* opacity: .5; */

  @media (max-width: 750px) {
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 0px;
        margin-left: 0px;
        /* justify-content: flex-start; */
        /* color: #991313; */
        /* background-color: rgb(35, 143, 42); */
  }



}



.content-container-center-vertical {

  display: flex;
  flex-direction: column;
  /*items in this container are up and down*/
  /*margin-left: auto; */
  /*this keeps the div centered left to right, refer to wireframe */
  /*margin-right: auto;*/
  flex-grow: 1;

  border: solid 1px;
  border-color: rgb(247, 244, 244);
  border-style: dashed;

  /* background-color: black; */
  /* opacity: .5; */
  gap: 5px;
  /* width: 300px; */
  /* height: 100px; */


}


/* =====Wireframe end=============*/



/* ======FORMATTING======= */
.heading-bold {
  font-family: "halyard-display", sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 30px;
  color: #040404;
  /* Set your desired color here */
  line-height: 20px;
}

.normal-weight{
  display: inline;
  font-family: "halyard-display", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #2e2e2e;
}

.box-labels {
  text-align: left;
}

.desktop-750-hide{
  @media (max-width: 750px) {
    display: none;  
  } 
}

.desktop-750-show {
  display: none;
  @media (max-width: 750px) {
    display: inline;
  }
}

.smaller-mobil{
  font-size: 17px;
  line-height: 5px;
}

/* =====Formatting end=============*/






.box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 350px;
  box-sizing: border-box;
  /* height: 300px; */
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 200px;
  /* margin: 0 auto; */
  /* background: #8a8a8a; */
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07); */

    @media (max-width: 450px) {
      
      
      padding-left: 10px;
      padding-right: 10px;
      
    }
  
}


.top-image{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-bottom: solid 1px;
  height: 150px;
  padding-left: 30px;
  @media (max-width: 450px) {
      padding-left: 10px;
    }

}





.new-user-input {
  margin-top: 20px;

  display: flex;
  /* justify-content: right; */
  /* flex-direction: column; */
  background-color: white;
  height: 20px;
  font-family: "Helvetica";
  /* Specify font family */
  font-size: 20px;
  font-weight: 200;
  /* Add this line */
  color: #333;
  /* Set your desired color here */
  /* margin-right: auto; */
  /* margin-top: 20px; */
  /* margin-bottom: 10px; */
  width: 90%; 
  max-width: 500px;
  /* min-width: 200px; */
  border: 1px solid #ccc;
  /* Border for visual clarity */
  border-radius: 4px;

  padding-top: 8px;
  /* Add some padding */
  padding-bottom: 12px;
  /* Add some padding */
  padding-left: 10px;
  /* Add some padding */
  padding-right: 10px;
  /* Add some padding */
  overflow: hidden;


}


 .submit-btn {
   display: inline-block;
   width: 100%;
   padding: 16px 20px;
   background: #101010;
   color: white;
   border: none;
   border-radius: 6px;
   font-family: "halyard-display", sans-serif;
   font-size: 18px;
   font-weight: 400;
   cursor: pointer;
   transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
   margin-top: 20px;
 }

 .submit-btn:hover {
  color: rgb(231, 229, 229);
  background: #2e2e2e;
   transform: translateY(-1px);
   /* box-shadow: 0 5px 14px rgba(37, 99, 235, 0.35); */
 }

 .submit-btn:active {
   transform: translateY(0);
   box-shadow: none;
 }



 /* Container for the form field subject */
 .form-group {
  width: 90%;
   max-width: 300px;
   margin: 10px 0;
   font-family: Helvetica, Arial, sans-serif;
 }

 /* Label styling */
 .form-group label {
   display: block;
   font-size: 16px;
   font-weight: bold;
   margin-bottom: 8px;
   color: #333;
 }

 /* Dropdown styling */
 .form-group select {
   width: 100%;
   padding: 10px;
   font-size: 16px;
   border: 1px solid #ccc;
   border-radius: 5px;
   background-color: #fff;
   color: #333;
   appearance: none;
   /* Remove default browser styling */
   background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
   background-repeat: no-repeat;
   background-position: right 10px top 50%;
   background-size: 20px;
   transition: border-color 0.3s, box-shadow 0.3s;
 }

 /* Hover and focus effects */
 .form-group select:hover {
   border-color: #888;
 }

 .form-group select:focus {
   outline: none;
   border-color: #007bff;
   box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
 }

 /* Optional: Disabled option styling */
 .form-group select option[disabled] {
   color: #999;
 }



 .description-input {
   margin-top: 20px;
   display: block;
   background-color: white;
   font-family: "Helvetica", sans-serif;
   font-size: 20px;
   font-weight: 200;
   color: #333;
   width: 90%;
   max-width: 500px;
   border: 1px solid #ccc;
   border-radius: 4px;
   padding: 10px;
   /* simplified padding */
   height: 300px;
   /* gives it room to be multiline */
   resize: vertical;
   /* allows user to drag the bottom edge */
   overflow-y: auto;
   /* shows scrollbar when needed */
   /* box-sizing: border-box; */
   /* includes padding in the width */
   line-height: 1.4;
 }


 .response{
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: 350px;
    box-sizing: border-box;
    /* height: 300px; */
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 200px;
    /* margin: 0 auto; */
    /* background: #8a8a8a; */
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07); */
  
    @media (max-width: 450px) {
  
  
      padding-left: 10px;
      padding-right: 10px;
  
    }

 }

















































/* == My media tags */

.media1200 {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #f0f0f0;
  display: none;
  text-align: center;
}


@media (max-width: 1200px) {
  .media1200 {
    display: block;
  }
}




.media920 {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #f0f0f0;
  display: none;
  text-align: center;
}





@media (max-width: 920px) {
  .media920 {
    display: block;
  }

  .media1200 {
    display: none;
  }
}





.media850 {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #f0f0f0;
  display: none;
  text-align: center;
}


@media (max-width: 850px) {
  .media920 {
    display: none;
  }

  .media850 {
    display: block;
  }
}






.media750 {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #f0f0f0;
  display: none;
  text-align: center;
}



@media (max-width: 750px) {
  .media850 {
    display: none;
  }

  .media750 {
    display: block;
  }


}



.media450 {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #f0f0f0;
  display: none;
  text-align: center;
}

@media (max-width: 450px) {
  .media750 {
    display: none;
  }

  .media450 {
    display: block;
  }


}

/* My media tags END ===*/