/* Global styles */
body {
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

/* File explorer styles */
.file-explorer {
  background-color: #ffffff;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 65vw;
  height: auto;
  overflow: auto;
  float: left; /* Add float property */
  margin-top: 65px; /* Add margin-top property */
  margin-left: 65px;
  margin-bottom: 10px;
  padding: 10px;
}

.index {
  background-color: #ffffff;
  border: 1px solid #c2c2c2;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 65vw;
  height: auto;
  overflow: auto;
  float: left; /* Add float property */
  /* margin-top: 65px; */
  margin: 20px 0px;
  margin-left: 65px;
  padding: 10px;
}

.website-links>details>ul>li>a{
  text-decoration: none;
  color: black;
  font-size: 21px;
  margin: 15px;
}

.website-links>details>details>summary>span{
  text-decoration: none;
  color: black;
  font-size: 22px;
}

.website-links>details>details>summary{
  margin-left: 15px;
}

.website-links>details>details>details>summary{
  margin-left: 30px;
}

.website-links>details>details>details>ul>li{
  margin-left: 45px;
}

.website-links>details>details>details>summary>span{
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.link1:hover{
  text-decoration: underline green;
}
.link2:hover{
  text-decoration: underline #0d6efd;
}
.link3:hover{
  text-decoration: underline yellow;
}
.link4:hover{
  text-decoration: underline orange;
}
.link5:hover{
  text-decoration: underline red;
}

.header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #c2c2c2;
}

.logo img {
  width: 54px;
  height: 54px;
  margin: 0px 10px;
  border-radius: 5px;
}

.logo span {
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

table {
  width: 100%;
  border: 2px solid black;
}
table tr, th{
  border: 2px solid black;
}

i{
  padding: 5px;
}

@media only screen and (max-width: 320px) {
  #logo-container{
    padding-left: 0;
  }
  .website-links>details>ul>li>a {
    font-size: 15px;
}
}
@media only screen and (min-width: 300px) and (max-width: 425px){
  #logo-container{
    padding-left: 0;
  }
  .website-links>details>ul>li>a {
    font-size: 15px;
  }
}



