body{
  background-color:antiquewhite;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
 
}
.translation{
  width: 100px;
  height: 30px;
}
#main {
  transition: margin-left 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  padding: 20px;
  width: 100%;
}
.navbar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #5500cb;
  overflow-x: hidden;
  padding-top: 4rem;
  transition: 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  font-family: Roboto;
  
}
.navbar img{
  margin-left: 40px;
  width: 150px;
  height: 150px;
}
.navbar h1{
  text-align: center;
  color: white;
  font-size: 20px;
}
.navbar a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.4s;
  white-space: nowrap;
  font-size: 25px;

}
.navbar .close-btn {
  position: absolute;
  top: -1rem;
  right: 1rem;
  font-size: 5rem;
}
.navbar .close-btn:hover {
  background: initial;
  transform: scale(1.2);
}
.dropdown {
  position: relative;
  display: inline-block;
}
nav{
  margin-top: 15px;
  margin-left: 15px;
}
a svg {
  transition: all 0.5s ease;
}
a svg:hover {
  transform: rotate(90deg);
}
@media screen and (max-height: 480px) {
  .navbar {
    padding-top: 3rem;
  }
  .navbar a {
    font-size: 1.5rem;
  }
}
/*.navbar {
  transition: 0s; 
}
#main {
  transition: margin-left 0s;
}*/
.dropdown .dropbtn {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.4s;
  white-space: nowrap;
  font-size: 25px;
}
.navbar a:hover, .dropdown:hover .dropbtn {
  color: white;
  background: #9e9e9e;
}
.dropdown-content {
  display: none;
  background-color: #bdbdbd;
  padding-left: 8px;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.show {display:block;}
.dashboard {
  position: relative;
  margin-top: 0;
  width: 95%;
  margin: auto;
  background-color: whitesmoke;
  padding: 12px 15px;
  
}
  .box-container {
    margin-top: 20px;
    width:100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 70px;
    border: 1px solid silver;
  }
  .box{
    margin-top: 10px;
    margin-bottom: 10px;
    height: 60px;
    width: 200px;
    border-radius: 20px;
    box-shadow: 3px 3px 10px rgba(0, 30, 87, 0.751);
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }
  .box:hover{
    transform: scale(1.1);
  }
  .box:nth-child(1) {
    background-color: #5500cb;
  }
  .box:nth-child(2) {
    background-color: #5500cb;
  }
  .box .text {
    color: white;
    
  }
  .topic {
    font-size: 25px;
    letter-spacing: 1px;
    font-family: Roboto;
  }
   
  .topic-heading {
    font-size: 30px;
    letter-spacing: 3px;
    font-family: Roboto;
  }
  .reports-container {
    width:100%;
    display: flex;
    height: fit-content;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    border: 1px solid silver;  
  }
  .report{
    height: auto;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: yellow;
    border-radius: 30px;
    box-shadow: 3px 3px 10px rgb(188, 188, 188);  
  }
  .report-report1,.report-report2{
    width:90%;
  }
  .report-header{
    width: 100%;
    font-size: 11px;
    text-align: center;
    font-family: Roboto;
    color: #5500cb;
    
  }
  .items {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    font-size: 15px;
    font-family:Roboto;
    background-color: aqua;
    border-radius: 0px 0px 30px 30px;
  }
  .items th,td{
    padding: 5px 7px;
  }
  .items th{
  color:red;
  font-weight: 600;
  }
  .items td{
    color: #333;
    font-weight: 600;
    }
  div.container{
    margin: 0;
    padding: 0;
  }
  .csv{
    background-color: white;
    margin-bottom: 5px;
   }
   .csv h1{
    margin-top: 0;
    background-color: whitesmoke;
    font-size: 30px;
    font-family: Roboto;
    margin-bottom: 0;
    text-align: center;
    color: #5500cb;
   }
   .csv form{
    background-color:antiquewhite;
    margin-bottom: 5px;
   }
   .csv lable{
    color: #5500cb;
    margin-bottom: 5px;
   }
   .csv .l1{
    border: 1px solid #5500cb;
    background-color: #5500cb;
    color: white;
    border-bottom-left-radius:10px;
    border-top-left-radius:10px;
    padding:2px 4px;
   }
   .csv input{
    font-size: 20px;
    color: #5500cb;
    background-color: white;
    margin-bottom: 5px;
    width: 80%;
    border-bottom-right-radius:10px;
    border-top-right-radius:10px;
    border: 1px solid white;
   }
   .csv select{
    width: 80%;
    margin-bottom: 5px;
    border-bottom-right-radius:10px;
    border-top-right-radius:10px;
    color: #5500cb;
    background-color: white;
    border: 1px solid white;
   }
   .csv .select{
    width: 80%;
    margin-bottom: 5px;
    border-radius:10px;
    border-radius:10px;
    color: #5500cb;
    background-color: white;
    border: 1px solid white;
   }
   .csv input:hover,select:hover{
    border: 1px solid #5500cb;
   }
  #example {
    width: 95%;
    border-collapse: collapse;
    background-color: aliceblue;
    font-size: 13px;
    font-family: Roboto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  }
 
  #example caption{
    text-align: right;
    margin-bottom: 8px;
  }
  #example caption h2{
    text-align: center;
    margin-bottom: 8px;
    color: #5500cb;
  }
  caption .mr-4{
    text-decoration: none;
    font-size: 15px;
    font-family: Roboto;
    font-style: bold;
    border: 1px solid #5500cb;
    border-radius: 5px;
    color: white;
    background-color: #5500cb;
    padding: 6px 6px;
  }
  #example th{
    background-color: #5500cb;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    padding: 6px 8px;
  } 
  #example td{
    padding: 6px 8px;
    font-weight: 500;
    text-align: center;
  }
  #example tr:nth-child(even) {background-color: #f2f2f2;}
  .mr-3,.mr-2{
    text-decoration: none;
    font-size: 11px;
    font-family: Roboto;
    font-style: bold;
    border: 1px solid #5500cb;
    color: white;
    background-color: #5500cb;
    padding: 4px 6px;
  }
  .mr-2{
    background-color: red;
    border: 1px solid red;
  }
  .login{
    position:absolute;
  }
  .search{
    display: flex;
  }
  .search lable{
    font-size: 25px;
  }
  .search button{
    font-size: 20px;
    background-color: #5500cb;
    color: white;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 1px solid #5500cb;
  }
  .search button:hover{
    background-color: slategrey;
  }
  .dn{
    font-size: 20px;
    color: white;
    background-color: #5500cb;
    border-radius: 10px;
    font-family: Roboto;
  }
  .dn:hover{
    background-color: slategrey;
    color: white;
    cursor: pointer;

  } 
.header{
  position: auto;
  width: 600px;
  margin: auto;
  line-height: 1.5;
  border: 1px solid dark;
}
.userform{
    background-color: white;
    width: 98%;
    line-height: 0.8;
    border: 1px solid aliceblue;
    border-radius: 15px;
    margin-top: 10px;
    scroll-behavior: smooth;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.userform h1{
  text-align: center;
  background-color: white;
    color:#5500cb;
    font-size: 1.3em;   
    font-weight: bold;  
}
.userform input{
  margin-left: 10PX;
    font-family: Roboto;
    width: 95%;
    word-wrap: normal;
    height: auto;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
}
.userform .custom-select{
  margin-left: 10PX;
    font-family: Roboto;
    width: 95%;
    word-wrap: normal;
    height: auto;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
}
.userform lable{
  margin-left: 10PX;
  font-family: Roboto;
  width: 95%;
  word-wrap: normal;
  height: auto;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  border: 5px dark;
  border-radius: 5px;
}
.userform .add{
  margin-left: 10PX;
  font-family: Roboto;
  width: 95%;
  height: 70px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  bottom: 10px;
  border: 1px solid black;
  border-radius: 5px;
}
.userform button{
  margin-top: 30px;
  margin-left: 10PX;
  margin-right: 85PX;
  font-family: Roboto;
  width: 30%;
  height: 30px;
  justify-content: center;
  text-align: center;
  background-color: #5500cb;
  font-size: 25px;
  color: white;
  font-weight: bold;
  position: relative;
  bottom: 5px;
  border: 1px solid #5500cb;
  border-radius: 30px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.userform button:hover{
  background-color: red;
}
.userform select{
  font-family: Roboto;
    width: 100%;
    height: 1.5em;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    bottom: 10px;
    border: 5px dark;
    border-radius: 5px;
}
.form{
  margin: auto;
  margin-top: 150px;
  max-width: 500px;
  background-color: whitesmoke;
  border-radius:5px;
  text-align: center;
  box-shadow: 0 0 20px rgba(188, 188, 188, .25); 
}
.form img{
    width: 150px;
    height: 150px;
}
.form h2{
  margin-top: 0px;
  font-family: Roboto;
  
}
.loginform{
  padding-bottom: 20px;
  margin: 0 15px;
  text-align: center;
}

.inputleft {
  padding-left:35px;
  height: 3em;
  width: 80%;
  border: 2px solid antiquewhite;
  border-radius: 0.5em;
  font-size: 1em;
}

.iconleft {
  position: relative;
  font-size: 1.3em;
  z-index: 1;
  left: 10px;
  top: 1px;
  color: #7B7B7B;
  cursor:pointer;
  width: 0;
}
.loggin{
  width: 80%;
  height: 50px;
  font-size: 20px;
  color: white;
  background-color: red;
  border-radius: 20px;
  border: 0;
  font-family: Roboto;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25); 
}
.loggin:hover{
  background-color: #5500cb;
}