@import url('https://fonts.googleapis.com/css2?family=K2D&family=Roboto&display=swap');

body {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'K2D', 'Roboto', Tahoma;
}

.navbar-brand {
  cursor: pointer;
}

.sidebar {
  position: fixed;
  width: 250px;
  padding-top: 80px;
  height: 100%;
  left: -250px;
  transition: left 0.4s ease;
  background-color: rgba(255, 255, 255, .5);
}

.sidebar.show {
  left: 0px;
}

.sidebar .text {
  color: black;
  font-size: 25px;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
}

nav.sidebar ul {
  height: 100%;
  width: 100%;
  list-style: none;
}

nav.sidebar ul li {
  line-height: 50px;
}

nav.sidebar ul li a {
  position: relative;
  color: black;
  font-size: 18px;
  padding-left: 30px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}

nav.sidebar ul li a:hover {
  text-decoration: none;
  color: #DC3545;
  border-left-color: #DC3545;
}

.active {
  text-decoration: none !important;
  color: #DC3545 !important;
  border-left-color: #DC3545 !important;
}

nav.sidebar ul ul {
  position: static;
  display: none;
}

nav.sidebar ul .show {
  display: block;
}

nav.sidebar ul ul li {
  line-height: 40px;
  border-bottom: none;
}

nav.sidebar ul ul li a {
  font-size: 16px;
  padding-left: 20px;
}

nav.sidebar ul li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.4s;
}

nav.sidebar ul li a span.rotate {
  transform: translateY(-50%) rotate(-180deg);
}

nav.navbar ul li a {
  color: black;
  font-size: 18px;
  font-weight: 500;
}

nav.navbar ul li a:hover {
  text-decoration: none;
  color: #DC3545;
}

main {
  padding-top: 90px;
}

.card-header {
  background: white;
}

th {
  text-align: center;
}

th,td {
  vertical-align: middle !important;
}

.picture-show {
  width: 90px;
  height: auto;
}
.picture-show:hover {
  transition: all 0.3s;
  transform: scale(2);
}
.picture-profile {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  margin-left: 30px;
}

th,
td {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-nowrap {
  white-space: nowrap;
}