body{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
.hide{
    display: none;
}
#userList{
    padding: 30px;
    padding-top: 5px;
}
a{
    color: inherit !important;
    text-decoration: none !important;
}
tr button{
    padding: 4px;
    cursor: pointer;
}
.borderless th{
    border: none !important;
}
.borderless td {
    border: none !important;
}
.borderless{
    border: none !important;
}
#transtable_wrapper{
    padding-left: 28px !important;
    padding-right: 28px !important;
    height: calc(100vh - 280px);
    overflow-y: auto;
    padding-top: 17px;
    border-top: 1px solid #d1d1d1;
}
.dt-buttons{
    margin-left: 10px !important;
}
#visiters_wrapper{
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding-top:5px;
}
ul li{
    display: block;
}
.logo{
    height: 23px;
    padding: 10px 10px 10px 30px;
}
.oddColm{
    background: #ebebeb;
    /* width: 100%; */
    height: 40px;
}
.evenColm{
    height: 40px;
    background: #fff;
}
header{
    padding: 0px;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.dash-head{
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
    margin-left: 30px;
}
.sidebar{
    width: 250px;
    height: calc(100vh - 68px);
    float: left;
    background: #000;
    color: #fff;
}
.sidebar ul{
    margin: 0px;
    padding: 0px;
}
.sidebar ul li{
    padding: 15px;
    margin: 0px;
    cursor: pointer;
}
.sidebar ul li:hover{
    background: #282828 !important;
}
.active{
    background: #2a2a2a!important;
}
.content{
    width: calc(100% - 260px);
    height: calc(100vh - 100px);
    float: left;
}

#login-container {
    width: 360px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 5px;
    /* Added margin for centering */
    margin: 100px auto;
  }
  
  .login-box {
    /* text-align: center; */
  }
  
  h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  #login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
  }
  
  .input-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  label {
    font-size: 14px;
  }
  
  input[type="email"],
  input[type="text"],
  input[type="password"] {
    padding: 10px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    font-size: 16px;
  }
  
  .checkbox-field {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  button {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
/*   
  button:hover {
    background-color: #2f2f2f;
  } */
  
  .forgot-password,
  .create-account {
    font-size: 12px;
    color: #ccc;
    margin-top: 10px;
  }
  
  .forgot-password:hover,
  .create-account:hover {
    color: #4CAF50;
  }

@media (max-width:900px)  {
    .content{
        width: 100% !important;
    }
    .sidebar{
        display: none;
    }
}