html,body{
height:100%;
min-height:100%;
}
body{
overflow:hidden;
}

 /* Trapezium Menu Button */
        .menu-title {
            margin: 0;
            cursor: pointer;
            background: #7AB629;
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            position: relative;
            text-align: center;
            min-width: 130px;
            display: inline-block;
            font-size: 14px;
            transition: background 0.3s ease, transform 0.2s ease;
            clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
        }

        /* Hover effect on menu button */
        .menu-title:hover {
            background: #256428;
            transform: translateY(-2px);
        }

        /* Dropdown Menu */
        .menu-options {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: none;
            position: absolute;
            background: white;
            border-radius: 5px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
            top: 100%;
            left: 0;
            width: 100%;
            min-width: 130px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        /* Dropdown items */
        .menu-options li {
            padding: 8px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            white-space: nowrap;
            background: white;
            color: #7AB629;
            font-size: 13px;
            transition: background 0.3s ease;
        }

        /* Hover effect on dropdown items */
        .menu-options li:hover {
            background: #7AB629;
            color: white;
        }

        /* Menu container for proper positioning */
        .menu-container {
            position: relative;
            z-index: 10000;
            display: inline-block;
            top: -100%;
        }

 .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
  }

  @keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
  }

  /* Optional: overlay to cover the page */
  #loading-spinner {
    z-index: 9999;
  }

.oval-button {
  background: #7AB629;
  background-image: -webkit-linear-gradient(top, #7AB629, #256428);
  background-image: -moz-linear-gradient(top, #7AB629, #256428);
  background-image: -ms-linear-gradient(top, #7AB629, #256428);
  background-image: -o-linear-gradient(top, #7AB629, #256428);
  background-image: linear-gradient(to bottom, #7AB629, #256428);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 5px 1px 3px #666666;
  -webkit-box-shadow: 3px 3px 3px #666666;
  -moz-box-shadow: 3px 3px 3px #666666;
  box-shadow: 3px 3px 3px #666666;
  font-family: Arial;
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  left:-40px;
  position:absolute;
}

.oval-button:hover {
  background:#256428;
  background-image: -webkit-linear-gradient(top,#256428, #256428);
  background-image: -moz-linear-gradient(top, #256428, #256428);
  background-image: -ms-linear-gradient(top, #256428, #256428);
  background-image: -o-linear-gradient(top, #256428, #256428);
  background-image: linear-gradient(to bottom, #256428, #256428);
  text-decoration: none;
}


.mybutton {
    width:100%;
    height:25px;
	background:linear-gradient(to bottom, #bcd6c3 5%, #d7e6cf 100%);
	background-color:#bcd6c3;
	border-radius:3px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:16px;
	text-decoration:none;
}
.mybutton:hover {
	background:linear-gradient(to bottom, #d7e6cf 5%, #bcd6c3 100%);
	background-color:#d7e6cf;
}
.mybutton:active {
	position:relative;
	top:1px;
}

#dropdown_type:focus {
 box-shadow:none;
}

#dropdown_type, #load_type, #save_type {
background:white;
padding:0;
font-size:0.75rem;
border-radius:0;
border: 1px solid;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.vl {
  border-left: 6px solid #6c757d;
  height: 90%;
  position: absolute;
  left: 50%;
  margin-left: -3px;
}

$mynewcolor:#7AB629;

.btn-primary {
    @include button-variant($mynewcolor, darken($mynewcolor, 7.5%), darken($mynewcolor, 10%), lighten($mynewcolor,5%), lighten($mynewcolor, 10%), darken($mynewcolor,30%));
}

.btn-outline-primary {
    @include button-outline-variant($mynewcolor, #222222, lighten($mynewcolor,5%), $mynewcolor);
}


div.window {
  color: white;
  width: 100%;
  height:100%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  margin: 1rem;
  text-align: center;
  font-family: BlueHighway, Arial Black, sans-serif;
  margin: 0 auto;
}
div.window label {
  display: block;
  background: #7AB629;
  font-size: xx-small;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  transition: 0.4s all linear;
}
div.window label:hover {
  cursor: pointer; background: #7AB629;
}
input.toggle ~ div {
transform: scaleY(1);
transform-origin: top;
transition: transform 0.26s ease;
}
input.toggle:checked ~ div {
overflow: hidden;
transform: scaleY(0);
transform-origin: top;
transition: transform 0.26s ease;
}
input.toggle:checked + label {

}
input.toggle {
display: none;
 }

#basemapmenu {
background: #7AB629;
height:0.85rem;
width:100%;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}

.before, .after{
    font-size: small;
    color: white;
    top: -95px;
    position: relative;
    font-family: Roboto;
    background-color: #7AB629;
    width: 60px;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
    height: 15px;
}

.before{
    transform: skew(25deg);
    left: 60px;
}

.after{
    transform: skew(-25deg);
    left: -60px;
}





.menu{
    background: #7AB629;
    padding: 1px;
    width: 8rem;
    margin: 1px;
    color:white;
    cursor: pointer;
    border-radius: 2px;
}

#loadbasemap{
    position: relative;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    top: 40%;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.stepcheck{
    margin-right: 10px;
    width: max-content;
    display: block;
    text-align: center;
}

#Analyze{
    margin-left: 400px;
    height: 40px;
    margin-top: 10px;
}

#Compare{
    margin-left: 100px;
    height: 40px;
    margin-top: 10px;
}

.compareInputContainer {
  text-align: center;
  margin-top: 20px;
  overflow: auto;
  height: 100%;
}

.row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.col-sm {
  flex: 1;
  margin: 5px;
}

.btn {
  font-weight: 800;
}

.label-input-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}


input[type="file"] {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 180px; /* Adjust width as needed */
}

#GenerateResults {
  margin-top: 20px;
  padding: 10px 20px;
  font-weight: bold;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#ResultContainer {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  height: 300px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

