.main-content{
  flex:1;
  padding:40px;
  background:#020617;
  color:white;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#020617;
  color:white;
}

/* eeeeeee */

.dash-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.user-box{
  display:flex;
  align-items:center;
  gap:15px;
}

.btn{
  background:#2563eb;
  border:none;
  color:white;
  padding:8px 16px;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  background:#1d4ed8;
}

