.pesan {
  width: auto;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  background-color: #ffc107;
  align-items: center;
  color: #000000;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: space-around;
}

.link-button {
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
}

.size-button {
  padding: 5px 10px;
  padding-right: 16px;
  padding-left: 16px;
}

.sidebar {
  width: 280px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1030;
  transition: transform 0.3s ease-in-out;
}

.main-content {
  transition: margin-left 0.3s ease-in-out;
  margin-left: 280px;
  width: calc(100% - 280px);
}

.sidebar .nav-link {
  color: #333;
}

.sidebar .nav-link.active {
  color: #000;
  background-color: #ffc107;
}

.stat-card i {
  font-size: 2.5rem;
}

.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }
}

@media (max-width: 991.98px) {
  .sidebar.active {
    transform: translateX(0);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
  }
}

@media (max-width: 991.98px) {
  .main-content {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.31);
    z-index: 1020;
    display: none;
  }
}

@media (max-width: 991.98px) {
  .sidebar-overlay.active {
    display: block;
  }
}

