.scrollable-feed {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  transition: max-height 0.5s ease-in-out;
}

.scrollable-feed p {
  padding: 8px;
  margin: 5px 0;
  background: #fff;
  border-left: 5px solid green; /* Ikon Status Default */
}

.status-pending {
  border-left-color: orange;
}
.status-completed {
  border-left-color: red;
}

.dashboard-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  height: 100%;
}
.dashboard-image img {
  width: 100%;
  height: auto;
  filter: brightness(50%);
  border-radius: 20px;
  object-fit: cover;
}
.time-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 90%;
  max-width: 500px; /* Batasi agar tidak terlalu besar */
}

.time-container h1,
.time-container p {
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
}

.sidebar-item {
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.sidebar-item a {
  text-decoration: none;
  color: #333;
}

/* Menu sidebar yang aktif */
.sidebar-item.active {
  background-color: #007bff;
  /* Warna biru untuk menu aktif */
  color: white;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
  /* Efek bercahaya */
  font-weight: bold;
}

.sidebar-item.active a {
  color: white;
  /* Warna teks untuk menu aktif */
}

.sidebar-item:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.sidebar-item.active {
  transition: all 0.3s ease;
}

.center-image {
  position: absolute;
  top: 50%;
  /* Posisi vertikal */
  left: 50%;
  /* Posisi horizontal */
  transform: translate(-50%, -50%);
  /* Memusatkan gambar */
  width: 120px;
  /* Lebar gambar */
  height: 120px;
  /* Tinggi gambar */
  border-radius: 50%;
  /* Membuat gambar berbentuk lingkaran */
}
