* {
  box-sizing: border-box;
}

body {
  /* background: linear-gradient(to top right, #cacacf , #53535C, #cacacf); */
  background: #cacacf;
  font-family:Verdana;
  color:powderblue;
}

ul {
  border-radius:10px;
  border-style:solid;
  border-width:1px;
  border-color:blue;
  list-style-type: none;
  margin: 3px;
  padding: 0px;
  overflow: hidden;
  background-color: black;
  text-align: center;
}

/* li {
  float: center;
} */ 

li a, .dropbtn {
  display: inline-block;
  color: powderblue;
  text-align: center;
  padding: 7px 8px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: grey;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: grey; /*menu color f9f9f9f9*/
  min-width: 40px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  /* color: black; */
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
  color: powderblue;/* menu txt color*/
  font-size: 16px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Submenu Styling for XSS Section */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .sub-dropbtn {
  display: block;
  color: powderblue;
  padding: 6px 8px;
  text-decoration: none;
  text-align: left;
  font-size: 16px;
  /* background-color: black; */
  /* border-top: 1px solid blue; */ /* Add separation between sections */
}

.dropdown-submenu .dropdown-subcontent {
  display: none;
  position: absolute;
  left: 100%;  /* Submenu appears to the right */
  top: 0;
  background-color: grey;
  min-width: 120px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Show submenu on hover */
.dropdown-submenu:hover .dropdown-subcontent {
  display: block;
}

/* Submenu links */
.dropdown-subcontent a {
  color: powderblue;
  padding: 6px 8px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 16px;
}

.dropdown-subcontent a:hover {
  background-color: #f1f1f1;
}

iframe {
  /* border-radius:10px; */
  /* border-style:solid; */
  /* border-width:1px; */
  /* border-color:blue; */
  width: 100%;
  /* padding: 10px; */
  height: 910px; /* Adjust the height as needed */
}

.sitemap-columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 500px; /* Adjust this value based on your design */
  list-style-type: disc; /* Add bullet points */
  padding-left: 20px; /* Adjust as needed */
  margin-top: 7px;
}

.sitemap-columns li {
  width: calc(100% / 3);
  padding: 5px;
  box-sizing: border-box;
}

.main {
  float: left;
  width: 80%;
  padding: 0 10px;
}

/* autosize imgs for smaller screens */
img {
  max-width:100%;
  height:auto;
}

.left {
  border-radius:10px;
  border-style:solid;
  border-width:1px;
  border-color:blue;
  background-color: rgba(0, 0, 0, 0.6);
  float: left;
  width: 10%;
  padding: 5px;
  margin-top: 7px;
  text-align: center;
  
  h4 {
    color: powderblue;
  }

  p {
    font-size: 18px;
     }
}

.right {
  border-radius:10px;
  border-style:solid;
  border-width:1px;
  border-color: blue;
  background-color: rgba(0, 0, 0, 0.6);
  float: left;
  width: 10%;
  padding: 5px;
  margin-top: 7px;
  text-align: center;

  p {
   font-size: 18px;
  }

  h4 {
    color: powderblue;
  }

 /* edit hover colors etc */
 /* unvisited link */
 a:link {
  color: white;
  }

/* visited link */
a:visited {
  color: grey;
  }

/* mouse over link */
a:hover {
  color: blue;
  }

/* selected link */
a:active {
  color: purple;
  } 

}

@media only screen and (max-width: 600px) {
  /* For mobile phones: */
  .menu, .main, .right, .left {    
    width: 100%;
  }
  
  p {
	  font-size: 9px;
    }
}