:root{
  --bgdark: #19222c;
  --hover: #36434d;
}

.btn-primary{
  background-color: #3b7ddd !important;
}

.text-primary{
  color: #3b7ddd;
}

.btn-primary:hover{
  background-color: #2f64b1 !important;
}

.bg-secondary{
  background-color: #19222c !important;
}

.bg-dark{
  background-color: #222e3c !important;
  
}

.table {
  color: #BDC0C5;
}

.table tr:nth-child(even){
  background-color: #2d3846;
}


.table tr:hover{
  background-color: var(--hover);
  color: white;
}

.card{
  background-color: #222e3c;
  color: white;
}
.form-control{
  background-color: #222e3c;
  color: white;
}
.form-control:focus{
  background-color: #222e3c !important;
  color: white;
}

.dropdown-item:hover{
  background-color: var(--hover);
}
.logout:hover{
  background-color: red;
}

.w-49{
  width: 48%;
}