body {
  font-family: "Poppins", Arial, sans-serif;
}

.table {
  font-size: 0.9rem;
}

.table th {
  font-size: 0.9rem;
}

.login-page {
  background-image: url('../img/mybg.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(24, 24, 24, 0.942);
}

.login-page-panel {
  background-image: url('../img/mybg.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(24, 24, 24, 0.942);
  -ms-flex-align: center;
  align-items: center;
  /* background-color: #323333; */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -ms-flex-pack: center;
  justify-content: center;
}

.info-box .info-box-icon {
  width: 100px !important;
}

.brand-text {
  letter-spacing: 1px;
}

.spinner-border {
  vertical-align: middle;
}

@keyframes blink-animation {
  0% {
    opacity: 1;
    /* Teks terlihat penuh */
  }

  50% {
    opacity: 0;
    /* Teks menghilang */
  }

  100% {
    opacity: 1;
    /* Teks kembali terlihat penuh */
  }
}

.text-berkedip {
  animation: blink-animation 1.5s infinite;
}

.main-header .nav-link {
  height: 100% !important;
}

.navbar-nav {
  gap: 10px;
}

.toasts-top-right {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-top-left {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-bottom-right {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.toasts-bottom-left {
  margin: 20px;
  min-width: 250px;
  z-index: 1070 !important;
}

.info-box {
  cursor: pointer;
}

.login-card-body,
.register-card-body {
  border-radius: 0.5rem !important;
}

td {
  white-space: nowrap;
  /* jangan pindah baris */
  overflow: hidden;
  /* sembunyikan teks berlebih */
  text-overflow: ellipsis;
  /* kasih tanda "..." */
  max-width: 150px;
  /* atur lebar kolom */
}

/* Saat hover, tampilkan full wrap */
td:hover {
  white-space: normal;
  /* boleh banyak baris */
  overflow: visible;
  /* munculkan semua teks */
  text-overflow: unset;
  /* hilangkan ... */
  background: #f9f9f9;
  /* opsional: kasih highlight */
  position: relative;
  /* biar overflow aman */
  z-index: 1;
  /* biar muncul di atas table lain */
}

@media (min-width:768px) {

  .login-box,
  .register-box {
    width: 460px;
  }
}