
.sidebar {
    background-color: rgb(3, 3, 145);
    color: white;
    width: 150px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 10px;
   }

   .mainbar {
   background-color: rgb(252, 251, 251);
   color:black;
   height: 100%;
   width: 100%;
   position: fixed;
   top: 0;
   left: 0;
   margin-left: 150px;
   padding: 10px;
   padding-top: 0%;
   }

   .form-container {
   background: #fff;
   padding: 10px;
   border-radius: 12px;
   box-shadow: 0 0 20px rgba(0,0,0,0.1);
   }

   .form-wrapper {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
   }

   table {
   width: 100%;
   margin: 0 auto;  
   background-color: rgb(206, 209, 211);
   border-collapse: collapse;
   }   

   table thead{
     text-align: left;
   }

   table tbody {
     text-align: left;
   }

   th, td {
   border-bottom: 1px solid rgb(116, 116, 116);
   padding: 8px;  
   }