:root {
  --background: #f4f4f4;
  --black: #1d1d1d;
  --disabled_border: #a0abc0;
  --error: #ff4444;
  --success: #00c851;
  --warning: #ffbb33;
  --white: #ffffff;
  --secondary: #024897;
  --main_10: #e5f1ff;
  --main_20: #cce4ff;
  --main_30: #b3d6ff;
  --main_40: #99c9ff;
  --main_50: #80bbff;
  --main_60: #66adff;
  --main_70: #4da0ff;
  --main_80: #3392ff;
  --main_90: #1a85ff;
  --main_100: #0379fd;
  --nav_bar: #0064d5;
}

body {
    margin: 0;
    /*NKR 14-05-2024 font-family: Arial, Helvetica, sans-serif;*/
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "slnt" 0;
  }
  
  .responsive_img {
    max-width: 99%;
    height: auto;
  }

  .icon-button {
    padding: 5px;
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
    border: none;
    cursor: pointer;
    font-size: 16px;
    width:3%;
  }

  .forgot_psw {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: right;
    justify-content: right;
    margin-bottom: 40px;
    margin-top: 0px;
    color: var(--main_100);
  }

  .login_footer {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .topnav {
    overflow: visible;
    background: var(--nav_bar);
    z-index: 1000;
    position: fixed;
    top:0;
    width:100%;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: var(--main_90);
    color: black;
  }
  
  .topnav a.active {
    background-color: var(--main_90);
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }

  .topnav a.right {
    float: right;
    padding: 10px 12px;
  }

  .topnav a.right img {
    vertical-align: middle;
    display: inline-block;
  }

  .topnav a.right:hover {
    background-color: var(--main_30);
  }

  .topnav .dropdown {
    float: left;
    position: relative;
    z-index: 1001
  }

.topnav .dropbtn {
  background: transparent;
  border: 0;
  margin: 0;
  color: #f2f2f2;
  font-size: 17px;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  position: relative;
  z-index: 1002;
  pointer-events: auto;
}

.topnav .dropdown.open > .dropdown-content { 
  display: block; 
}

.topnav .dropbtn:hover,
.topnav .dropdown:focus-within .dropbtn {
  background-color: var(--main_90);
  color: black;
}

.topnav .caret { font-size: 0.9em; opacity: 0.8; }

.topnav .dropdown-content {
  display: none;
  position: absolute;
  left: 0; top: 100%;
  background: var(--nav_bar);
  min-width: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 1100;
  padding: 6px 0;
}

.topnav .dropdown-content a {
  float: none;
  display: block;
  text-align: left;
  padding: 8px 16px;
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3;
}

.topnav .dropdown-content a:hover {
  background-color: var(--main_30);
  color: black;
}

.topnav .dropdown-divider {
  height: 1px;
  margin: 6px 0;
  background: rgba(255,255,255,.15);
}

.topnav .dropdown .current-org {
  font-weight: 600;
  text-decoration: underline;
}

/* Show dropdown on hover (desktop) */
.topnav .dropdown:hover .dropdown-content {
  display: block;
}

  .errorMsg{
    color: var(--error);
    margin-left: 10px;
    font-weight: bold;
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a{
      display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {
      position: relative;
    }
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    
  }

div.userData {
  width: 30%;
  padding-left: 20px;
  text-align: left;
  display: block;
}
@media screen and (max-width: 600px) {
  div.userData {
    width: 95%;
    padding-left: 10px;
  }
}

label{
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
}

input[type=text], input[type=password], input[type=email], input[type=number], input[type=date], .selectbox {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /*background-color: #edf2f7;*/
  border-radius: 6px;
  margin-bottom: 20px;
}
input[type=datetime-local] {
  width: 13%;
  padding: 8px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  /*background-color: #edf2f7;*/
  border-radius: 3px;
}

edf2f7
.errorMsg{
  color: var(--error);
  margin-left: 10px;
  font-weight: bold;
  display: none;
}

button {
  background: var(--nav_bar);/*linear-gradient(to bottom, var(--secondary) 0%, var(--main_100) 100%);*/
  color: white;
  padding: 10px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  font-size: 18px;
}

button:hover {
  opacity: 0.8;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-weight: 400;
}

.password-container {
  position: relative;
}

.password-icon {
  position: absolute;
  right: 10px;
  top: 57%;
  transform: translateY(-50%);
  cursor: pointer;
}

.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

.changepswbtn {
  background-color: #1F3247;
}
/*.updateuser{
  background-color: #4c7faf;
}*/
.secondaryBtn {
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.addFieldBtn {
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 100%);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  height: 42px;
  padding: 8px;
  margin-bottom: 30px;
  font-size: 16px;
}

.circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}
.red-circle {
  background-color: var(--error);
}
.green-circle {
  background-color: var(--success);
}

.red-circle-2 {
  display: inline-block;
  background-color: var(--error);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 10px;
}
.green-circle-2 {
  display: inline-block;
  background-color: var(--success);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 10px;
}

.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
  /*NKR*/
  padding-top: 6px;
  padding-bottom: 0px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

div.form
{
  border-radius: 20px;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: block;
  background-color: var(--background);/* #f1f2f0;*/
  margin-top: 5%;
  padding:20px;
}

.title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--disabled_border);
  margin-bottom:40px;
}

.user_input_fields {
  font-size:14px;
  font-weight:400;
  display: grid; 
  grid-template-columns: 1fr auto;
  border: 1px solid #ccc; /* Border style */
  padding: 10px; /* Padding inside the border */
  padding-left: 20px;
  border-radius: 5px; /* Rounded corners */
}

#map { 
  height: 60%; 
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 400px) {
  span.psw {
     display: block;
     float: none;
     font-size: 14px;
  }
  .cancelbtn {
     width: 100%;
  }
  div.form
  {
    width: 100%;
  }
}

#heatmap {
  width: 600px;
  height: 600px;
  margin: 0px auto;
}

#plot {
  width: 100%;
  text-align: center;
}

#matrixSlider {
  width: 90%;
  margin: 5px 2% 0px 2%;
}