/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure the html and body are also full height */
  box-sizing: border-box;
}
body {
  background: url("https://aerowave.ca/_img/AeroWave-BG.png");
  background-color: #16182b;
  font-family: "Montserrat", sans-serif;
  font-size:14px;
  color: #fff;
}

hr {
  margin-top: 10px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile {
	display:none;
}

.wrapper {
  width: 100%;
  min-height: 100vh; /* Full viewport height */
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap; /* Allow children to wrap */
}
.left-section {
  flex-basis: 80%; /* Takes up 75% of the wrapper width */
  display: flex;
  flex-direction: column;
}
.right-section {
  flex-basis: 20%; /* Takes up 25% of the wrapper width */
  display: flex;
  flex-direction: column;
}
.top-box,
.footer-box,
.half-box,
.full-box {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px,
    rgba(0, 0, 0, 0.15) 0px 2px 6px 2px;
  padding: 20px;
}
.half-box div {
  margin-top: 20px;
  height: 85%;
}

.top-box,
.footer-box {
  height: 40px;
  background-color: #ff0000;
  border-radius: 6px;
  margin: 10px;
  background: rgba(96, 118, 255, 0.12);
}
.top-box {
  margin-top: 20px;
}
.logo img {
  height: 50px;
}

.logo,
.date-picker,
.date-picker-element {
  display: inline-block;
  vertical-align: top;
}

.logo, button[type="submit"]{
  margin-top: -3px;
}

.date-picker-element:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.date-picker {
  float: right;
}

label,
input {
  font-family: "Montserrat", sans-serif;
  display: flex;
  width: 130px;
  margin-right: 40px;
}

label {
  color: rgb(255, 255, 255);
  font-weight:bold;
}

input {
  margin-top: 8px;
  color: rgb(0, 207, 232);
  background-color: rgba(0, 0, 0, 0);
  border: none;
  padding: 0px;
  /*height:50px;*/
  border: none;
  outline: none;
  cursor: pointer;
  margin-bottom: 5px;
}

input::-webkit-datetime-edit-day-field:focus,
input::-webkit-datetime-edit-month-field:focus,
input::-webkit-datetime-edit-year-field:focus {
  background-color: rgba(0, 207, 232, 0.3);
  color: white;
  outline: none;
}

input[type="date"]::-webkit-datetime-edit-year-field,
input::-webkit-datetime-edit-month-field,
input::-webkit-datetime-edit-month-field {
    color: rgb(0, 207, 232);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  /* display: none; */
  color-scheme: dark;
  cursor: pointer;
}

button[type="submit"] {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: none;
  background: linear-gradient(
    180deg,
    rgba(0, 207, 232, 0.2) 0%,
    rgba(0, 207, 232, 0) 150%
  );
  border-radius: 6px;
  height: 50px;
  width: 120px;
  border: 0px;
  border: 1px solid rgb(0, 207, 232);
  margin-right: 0px;
  text-align: center;
  cursor: pointer;
}

.bottom-boxes {
  flex: 1; /* Fill remaining space */
  display: flex;
  flex-wrap: wrap;
}
.left-section .half-box,
.right-section .full-box {
  background-color: #ff0000;
  border-radius: 6px;
  margin: 10px;
  box-sizing: border-box; /* Include padding and borders in the width */
  background: rgba(96, 118, 255, 0.12);
}
.left-section .half-box {
  width: calc(50% - 20px); /* Adjust for margin */
  height: calc((100% - 40px) / 2); /* Adjust for the top box and margins */
}
.right-section .full-box {
  width: calc(100% - 20px); /* Adjust for margin */
  height: calc((100% - 60px) / 3); /* Adjust for the top box and margins */
}
.footer-box {
  width: calc(100% - 10px); /* Adjust for margin */
  margin: 10px; /* Center the box */
  margin-bottom: 20px;
}

.parr {
  width: 65px;
}
.smolt {
  width: 87px;
}
.adult {
  width: 106px;
}

.parr,
.smolt,
.adult {
  display: inline-block;
  float: right;
  margin-top: 5px;
}
.adult {
  margin-top: 0px;
}

.fish-age-size, .blue {
  display: inline-block;
}
.fish-age-size span, .blue {
  color: rgb(0, 207, 232);
  font-size: 12px;
}

span{
  font-size:12px;
}



/********************************************************************************************/

/* Responsive adjustments */
@media (max-width: 1148px) {
	
	.date-picker, .download {
  display:none; /* FOR DEMO */
}



.mobile, .mobile > .date-picker{
	display:block;
}
label, input {
	margin-right:20px;
	
}
.date-picker-element:nth-child(2) {
	padding-left:20px;
}

button[type="submit"] {
	width:94px;
}
	
	
  .top-box {
    margin-top: 10px;
  }

  .left-section,
  .right-section {
    flex-basis: 100%;
  }
  .left-section .half-box,
  .right-section .full-box {
    width: calc(100% - 20px); /* Adjust for margin */
  }
  .left-section .half-box {
    height: calc((100% - 40px) / 4); /* Adjust for the top box and margins */
  }
  .half-box {
    min-height: calc((100% - 40px) / 2);
    max-width: calc((100% - 40px) / 2);
  }

  .half-box div {
    margin-top: 10px;
    height: 80%;
  }
  .right-section .full-box {
    height: calc((100% - 60px) / 3); /* Adjust for the top box and margins */
  }
}
