* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  background: #eee7d8;
  overflow-y: hidden;
}

.header {
  position: relative;
  left: 0;
  top: 0;
  width: 1850px;
  height: 60px;
  background: #d8ebf9;
  /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); */
}

.header i {
  position: absolute;
  top: 10px;
  left: -15px;
  width: 1000px;
  height: 40px;
  background: #4996a2;
  border-radius: 30px;
  border-bottom-left-radius: 0;
}

.header i::before {
  content: "";
  position: absolute;
  top: 40px;
  width: 15px;
  height: 30px;
  background: #2f6169;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 2;
}

.header i::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 15px;
  height: 15px;
  background: #4996a2;
}

.header i h4 {
  position: absolute;
  top: 1px;
  left: 30px;
  bottom: 1rem;
  font-size: 2rem;
  /* font-family: sans-serif;  */
  font-weight: bolder;

}

.logo-top {
  /* position: absolute;
    right: 40px; */
}

#up_logo {
  width: 100px;
  height: 60px;
  position: absolute;
  top: 2px;
  right: 60px;
}

#rsac_logo {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 2px;
  right: 140px;
}

/* header close */

#tool_button {
  width: 1850px;
  height: 10px;
  /* background: #a97070; */
  padding-top: 0;
}

/* map main  */
#map {
  width: 1850px;
  height: 840px;
  background: #ffffff;
  cursor: pointer;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* accordion */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap");

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;100;100&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --hue-color: 225;
  --first-color: hsl(var(--hue-color), 48%, 35%);
  --title-color: hsl(var(--hue-color), 48%, 22%);
  --text-color: hsl(var(--hue-color), 12%, 35%);
  --body-color: hsl(var(--hue-color), 49%, 98%);
  --container-color: #fff;
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 20px;
  --small-font-size: 15px;
  --smaller-font-size: 20px;
}

@media screen and (min-width: 1000px) {
  :root {
    --normal-font-size: 20px;
    --small-font-size: 14px;
    --smaller-font-size: 20px;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

/*=============== LAYOUT ===============*/
.container {
  width: 290px;
  height: 750px;
  height: auto;
  padding-right: -30px;
  /* margin-left: 0px;
  margin-right: 0px; */
}

/*=============== ACCORDION ===============*/
.accordion {
  /* display: grid; */
  /* align-content: center; */
  height: 100vh;
}

.accordion_container {
  display: grid;
  row-gap: 0.5rem;
  padding: 5px 20px 10px;

  margin-left: -55px;
  background-color: var(--container-color);
  border-radius: 0.2rem;
  box-shadow: 0 12px 32px rgba(51, 51, 51, 0.1);
}

.accordion_title {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: 20px;
  margin-top: 0.5rem;
  transition: 0.2s;
}

.accordion_header {
  display: flex;
  column-gap: 0.5rem;
  padding: 0.25rem 0.25rem 0.25rem 0.25rem;
  cursor: pointer;
}

.accordion_description {
  margin-top: -25px;
  /* padding: 0 0.25rem 0.25rem 0.3rem; */
  font-size: var(--smaller-font-size);
}

.accordion_icon {
  font-size: 1rem;
  margin-top: 0.5rem;
  height: max-content;
  color: var(--title-color);
  transition: 0.3s;
}

.accordion_item {
  width: 300px;
  /* height: 30px; */
  box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1);
  background-color: var(--container-color);
  border-radius: 0.2rem;
  position: relative;
  transition: all 0.25s ease;
}

.accordion_item::after {
  content: "";
  background-color: var(--first-color);
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}

.accordion_item:nth-child(1) {
  background-color: #fff7f0;
}

.accordion_item:nth-child(1)::after {
  background-color: #ffc08a;
}

.accordion_item:nth-child(2) {
  background-color: #f0f0ff;
}

.accordion_item:nth-child(2)::after {
  background-color: #8a8aff;
}

.accordion_item:nth-child(3) {
  background-color: #fff0f3;
}

.accordion_item:nth-child(3)::after {
  background-color: #ff8aa1;
}

.accordion_item:nth-child(4) {
  background-color: #f0faff;
}

.accordion_item:nth-child(4)::after {
  background-color: #8ad8ff;
}

.accordion_item:nth-child(5) {
  background-color: #fff7f0;
}

.accordion_item:nth-child(5)::after {
  background-color: #ffc08a;
}

.accordion_item:nth-child(6) {
  background-color: #f0f0ff;
}

.accordion_item:nth-child(6)::after {
  background-color: #8a8aff;
}

.accordion_item:nth-child(7) {
  background-color: #fff0f3;
}

.accordion_item:nth-child(7)::after {
  background-color: #ff8aa1;
}

.accordion_item:nth-child(8) {
  background-color: #f0faff;
}

.accordion_item:nth-child(8)::after {
  background-color: #8ad8ff;
}

.accordion_item:nth-child(9) {
  background-color: #fff7f0;
}

.accordion_item:nth-child(9)::after {
  background-color: #ffc08a;
}

.accordion_item:nth-child(10) {
  background-color: #f0f0ff;
}

.accordion_item:nth-child(10)::after {
  background-color: #8a8aff;
}

.accordion_item:nth-child(11) {
  background-color: #fff0f3;
}

.accordion_item:nth-child(11)::after {
  background-color: #ff8aa1;
}

.accordion_item:nth-child(12) {
  background-color: #f0faff;
}

.accordion_item:nth-child(12)::after {
  background-color: #8ad8ff;
}

.accordion_item:nth-child(13) {
  background-color: #fff7f0;
}

.accordion_item:nth-child(13)::after {
  background-color: #ffc08a;
}

.accordion_content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

/*Rotate icon and add font weight to titles*/
.accordion-open .accordion_icon {
  transform: rotate(45deg);
}

.accordion-open .accordion_title {
  font-weight: 600;
}

/* accordion */

input[type="checkbox"] {
  position: relative;
  top: 2px;
  left: 8px;
  margin-right: 20px;
  width: 14px;
  height: 14px;
  -webkit-appearance: none;
  outline: none;
  transition: 0.5s;
  /* box-sizing: border-box; */
}

input[type="checkbox"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgb(139, 90, 90);
  transition: 0.5s;
  box-sizing: border-box;
}

input:checked[type="checkbox"]::before {
  /* background: red; */
  border-left: none;
  border-top: none;
  width: 6px;
  border-color: rgb(3, 1, 119);
  transform: rotate(45deg) translate(5px, -6px);
}

#layerddid {
  height: 450px;
  /* width: 360px; */
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  overflow-y: scroll;
  z-index: 5000;
  position: absolute;
  top: 190px;
  right: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* icons hovering  */
.custom-hover-icon {
  transition: transform 0.3s, color 0.3s;
}

.custom-hover-icon:hover {
  transform: scale(1.2);
  color: #ff5722;
  /* Change to the color you prefer */
}

/* icons hovering  */

li {
  display: flex;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* side nav navigation button on clicking navigation div display */
#navigation_div {
  width: 280px;
  height: 250px;
  padding: 0 0;
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: #f8ffcf;
  margin-top: 20px;
  z-index: 20000;
  display: none;
  border-radius: 5px;
  border: 2px solid #38acaf;
}

#remove_navigation {
  position: absolute;
  right: 5px;
  font-size: 30px;
  cursor: pointer;
}

#navigation_heading {
  background-color: #38acaf;
  color: white;
  margin: 0;
  text-align: left;
  padding-left: 5px;
  padding: 1px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.navigation_select {
  text-align: center;
  margin: 10px 0;
  /* color: white; */
}

#st_d {
  display: flex;
  justify-content: space-around;
}

#dist_d {
  display: flex;
  justify-content: space-around;
}

#tlk_d {
  display: flex;
  justify-content: space-around;
}

#vill_d {
  display: flex;
  justify-content: space-around;
}

.image_basemap {
  width: 60px;
  height: 40px;
  position: absolute;
  /* left: 10px; */
  /* bottom: 5px; */
  right: 30px;
  top: 70px;
  margin: 1px;
  padding: 1px;
  border: 2.8px solid #09234b;
  border-radius: 10%;
  z-index: 1000;
}

.base_map1 {
  width: 55px;
  height: 35px;
  border-radius: 10%;
  /* display: none; */
}

.base_map2 {
  width: 55px;
  height: 35px;
  border-radius: 10%;
  /* display: block; */
}

/*  fruit image slider with strip */


/* .satelite_ddn[open] {
  display: block;
} */
details[open] {
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.box {
  width: 140px;
  height: 80px;
  background: white;
  border-radius: 5%;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 6px 6px;
  /* padding-bottom: 15px;
  padding-top: 15px; */
}

.box:hover {
  width: 145px;
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: wheat;
  transform-style: preserve-3d;
  transform: scale(1.02);
  transition: all ease 0.3s;
}

.box:hover .marvel {
  color: #c0292b;
  transition: all ease 0.5s;
}

.model {
  height: 60px;
  max-height: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.marvel {
  color: #32323e;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: bebas kai;
  font-size: 12px;
}

/* end of fruit image slider with strip */

/* map main close */
/* footer */
.footer {
  width: 1850px;
  height: 25px;
  background: #adcbe0;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 15px 0 25px 50px rgba(0,0,0,0.15); */
}

/* footer  close*/
@media only screen and (max-width: 320px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 300px;
    height: 60px;
  }

  .header i {
    width: 150px;
    height: 42px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 20px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 300px;
    height: 685px;
    z-index: 1;
    /* pointer-events: none; */
  }

  .footer {
    width: 300px;
    display: flex;
   
  }

  #tool_button {
    width: 300px;
  }
}

@media only screen and (min-width :320px) and (max-width: 500px) {
  body {
    /* height: 100%; */
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 400px;
    height: 60px;
  }

  .header i {
    width: 300px;
    height: 40px;
  }


  #map {
    width: 400px;
    height: 555px;
    z-index: 1;
    /* pointer-events: none; */
  }

  .footer {
    width: 400px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
  }

  #tool_button {
    width: 400px;
  }
}


@media only screen and (min-width :500px) and (max-width: 1000px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 740px;
    height: 60px;
  }

  .header i {
    width: 350px;
    height: 40px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 50px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 740px;
    height: 555px;
  }

  .footer {
    width: 740px;
    display: flex;
   
  }

  #tool_button {
    width: 740px;
  }
}

@media only screen and (min-width :1000px) and (max-width: 1190px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 990px;
    height: 60px;
  }

  .header i {
    width: 250px;
    height: 42px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 50px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 990px;
    height: 555px;
  }

  .footer {
    width: 990px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
  }

  #tool_button {
    width: 990px;
  }
}

@media only screen and (min-width :1190px) and (max-width: 1640px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 1550px;
    height: 60px;
  }

  .header i {
    width: 250px;
    height: 40px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 50px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 1550px;
    height: 640px;
  }

  .footer {
    width: 1550px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
  }

  #tool_button {
    width: 1550px;
  }
}

@media only screen and (min-width :1640px) and (max-width: 2450px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 1890px;
    height: 60px;
  }

  .header i {
    width: 1000px;
    height: 40px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 50px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 1890px;
    height: 860px;
  }


  .footer {
    width: 1890px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
  }

  #tool_button {
    width: 1890px;
  }
   /* dashboard */
   #right_panel {
    width: 390px;
    height: 550px;
   }

  .geoTable {
    width: 900px;  /* Fixed width for large screens */
}
.chart_container {
    width: 900px;  /* Fixed width for large screens */
}
.chart_container2 {
  width: 400px;  /* Fixed width for large screens */
}
}

@media only screen and (min-width : 2450px) {
  body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .header {
    width: 2530px;
    height: 65px;
  }

  .header i {
    width: 1000px;
    height: 42px;
  }

  .header i h4 {
    position: absolute;
    top: 1px;
    left: 50px;
    bottom: 0.5rem;
    font-size: 1.5rem;
  }

  #map {
    width: 2530px;
    height: 1250px;
  }

  .footer {
    width: 2530px;
    display: flex;
    height: 48px;
  }

  #tool_button {
    width: 2530px;
  }
  /* dashboard */
  #right_panel {
    width: 390px;
    height: 530px;
   }

  .geoTable {
    width: 900px;  /* Fixed width for large screens */
}
.chart_container {
    width: 900px;  /* Fixed width for large screens */
}
.chart_container2 {
  width: 400px;  /* Fixed width for large screens */
}

}

summary {
  height: 35px;
  width: 250px;
  font-weight: 400;
  font-size: 14px;
  color: rgb(255, 255, 255);

  background-color: rgb(15, 95, 99);
  border-radius: 0;
  padding: 10px;
  padding-top: 5px;
  margin-left: 20px;
  margin-top: 3px;
  margin-bottom: 0.5rem;

  border-radius: 0.5rem;

  cursor: pointer;

}

.inner_accord {
  width: 250px;
  height: 250px;
  margin: 10px;
  margin-left: 20px;
  margin-top: -15px;
  padding: 10px;
  padding-top: 5px;

  background-color: rgb(214, 254, 255);
  overflow-y: auto;
}

.monthly_flood {
  margin-left: 0px;
  margin-top: 5px;
  font-size: 15px;
}

.inner_accord_head_flood {
  width: 200px;
  margin-left: 10px;
  background-color: rgb(20, 33, 107);
}

.inner_accord_flood {
  width: 200px;
  height: auto;
  margin: 10px;
  margin-top: -15px;
  margin-left: 10px;
  padding: 10px;
  padding-top: 5px;
  background-color: rgb(243, 214, 255);
  overflow-y: auto;
}


/* toolbox css */


.icon-button {
  background: none;
  border: none;
  cursor: pointer;
}

.tool-popup {
  display: none;
  position: absolute;
  top: 100px;
  right: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  z-index: 1000;
  width: 255px;
  /* Adjust width as needed */
  padding: 10px;
}

.tool-item {
  padding: 8px 16px;
  cursor: pointer;
  background-color: #fdfeff;
  border: none;
  text-align: left;
  width: 99%;
  color: black;
  /* font-size: 6px; */
  margin-bottom: 5px;
  /* Spacing between tools */
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

/* .tool-item:hover {
  background-color: #ce0606;
} */



/* dashboard */

#right_panel {
  width: 390px;
  height: 530px;
  background: #ffffff;
  margin-right: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: none;
  /* border-radius: 10px; */

}

#bottom_panel {
  margin-top: 10px;
  background: #ffffff;
  width: 1850px;
  height: 300px;
  /* border: .8px solid #09234b; */
  display: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* position: absolute;
  bottom: 1px; */
}

#btm_panel {
  display: flex;
  /* Use flexbox for easy side-by-side alignment */
  flex-wrap: wrap;
  /* Allow wrapping of child divs */
  gap: 10px;
  /* Gap between child divs */
}

.geoJSLayerList {
  width: 350px;
  /* Adjust width as per your design */
  height: auto;
  margin: 4px 2px;
  padding: 10px 20px;
  font-size: 13px;
  max-height: 320px;
  /* Adjust height as per your design */
  background-color: #f0f0f0;
  /* Background color */
  color: #09234b;
  font-weight: bold;
  /* border: 1px solid #ccc; Border for visibility */
  border-radius: 10px;
  box-sizing: border-box;
  /* Include border and padding in width/height */
  /* Additional styles as needed */
}

.geoJSLayerList label {
  background-color: #fdfdfd;
  /* Background color */
  width: 300px;
  border-radius: 10px;
  padding: 5px;
  margin: 2px;
  color: #09234b;
}

.geoTable {
  /* width: 700px; */
  flex: 1;  /* Allow div to take available space */
    max-width: 900px;  /* Maximum width limit for geoTable */
  /* Adjust width as per your design */
  height: 290px;
  max-height: 290px;
  overflow-y: auto;
  margin: 5px 2px;
  padding: 0px 10px;
  font-size: 12px;
  max-height: 320px;
  /* Adjust height as per your design */
  background-color: #f0f0f0;
  /* Background color */
  color: #09234b;
  /* border: 1px solid #ccc; Border for visibility */
  border-radius: 10px;
  box-sizing: border-box;
  /* Inc */
}

#geojson-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  top: 0;

}

#geojson-table thead {
  position: sticky;
  top: 0;
  padding: 2px;
  text-align: center;
  background-color: #caecff;
  border-radius: 10px;
  border: 0.1px solid #ddd;
  font-size: 13px;
  font-weight: bold;
}


#geojson-table td {
  padding: 2px;
  text-align: center;
  background-color: #fdfdfd;
  border: 0.1px solid #ddd;
}

.chart_container {
  /* width: 700px; */
  flex: 1;  /* Allow chart container to take available space */
  max-width: 900px;  /* Maximum width limit */
  height: 290px;
  max-width: 800px;
  margin-bottom: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chart_container2 {
  /* width: 400px; */
  flex: 1;  /* Allow chart container 2 to take available space */
    max-width: 400px;  /* Maximum width limit */
  height: 290px;
  max-width: 800px;
  margin-bottom: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#geoChart {
  width: 600px;
  height: 290px;
  padding: 10px;
}

#geoChartPie {
  width: 400px;
  height: 290px;
}

#geojsonBtn {
  background-color: rgb(3, 1, 119);
  color: white;
  cursor: pointer;
  width: auto;
  padding: 10px 15px;
  font-size: 12px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#geojsonBtn:hover {
  background-color: rgb(116, 52, 203);
}

#color-paletteDiv {

  display: none;
}

#color-palette {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  right: 350px;
  top: 65px;
  /* display: none; */
  z-index: 2000;
}

#color-picker {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 552px;
  top: 63px;
  display: none;
  z-index: 2000;


}

#color-picker-label {
  border: none;
  border-radius: 25px;
  position: absolute;
  right: 574px;
  top: 62px;
  font-size: 14px;
  font-weight: bold;
  display: none;
  z-index: 2000;

}

.color-option {
  width: 15px;
  height: 15px;
  cursor: pointer;
  border: 1px solid #ccc;
  /* display: none; */
}

.color-option.active {
  border-width: 2px;
}

select,
input[type="file"],
button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: calc(100% - 22px);
  max-width: 300px;
  margin-bottom: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-header h2 {
  margin: 0;
}

.modal-body input[type="text"],
.modal-body input[type="number"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
}

.modal-footer button {
  width: 48%;
  padding: 10px;
}


#worldview_content {
  position: absolute;
  z-index: 2000;
  top: 265px;
  right: 180px;
}

#quickbird_content {
  position: absolute;
  z-index: 2000;
  top: 265px;
  right: 110px;
}

#ikonos_content {
  z-index: 2000;
  position: absolute;
  top: 265px;
  right: 50px;
}
#cartosat1_content {
  z-index: 2000;
  position: absolute;
  top: 325px;
  right: 180px;
}
#cartosat2_content {
  z-index: 2000;
  position: absolute;
  top: 325px;
  right: 110px;
}
#liss4_content {
  z-index: 2000;
  position: absolute;
  top: 325px;
  right: 80px;
}

/* satelite meta */
/* Popup box styling */



.metapopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  width: auto;
  height: auto;
}

.popup-content {
  background-color: #ffffff;
  position: fixed;
  top: 80px;
  left: 100px;
  padding: 20px 15px;
  border-radius: 10px;
  width: 350px;
  height: 420px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeIn 0.3s ease-in-out;
  z-index: 1001;
  margin: 0 !important;  /* Force remove any inherited centering */
  background: #fff;
  color: #333;
  
}


@keyframes fadeIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  color: #aaa;
  /* float: right; */
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
 
}

.close-btn:hover {
  color: #ff3333;
}

.popup-content h5 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 8px;
}

.popup-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
}
.popup-content p br {
  margin-bottom: 8px;
}

.popup-content img {
  display: block;
  margin:2px auto;
  border: 2px solid #ddd;
  border-radius: 6px;
}

.popup-content p strong {
  color: #2e86de;
  font-weight: 600;
}

