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;
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active, .sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active{
  background-color: #c52d88 !important;
}

@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;
}

.text-dalam {
  white-space: nowrap;
  /* jangan pindah baris */
  overflow: hidden;
  /* sembunyikan teks berlebih */
  text-overflow: ellipsis;
  /* kasih tanda "..." */
  max-width: 100px;
  /* atur lebar kolom */
}

/* Saat hover, tampilkan full wrap */
.text-dalam: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;
  }
}

.page-item.active .page-link {
   z-index: 0 !important;
}

.blink-hard {
  animation: blinker 1s step-end infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.btn-app{
  min-width: 200px !important;
  font-size: 16px !important;
  height: 70px !important;
}

/* Card Paket Member */
.card-paket {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.card-paket:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card-paket .card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-paket .harga {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
}
.card-paket .deskripsi {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}
.card-paket .link-deskripsi {
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: none;
}
.card-paket .link-deskripsi:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Dashboard Member */
.text-responsive {
    font-size: clamp(1.1rem, 4vw, 1.75rem);
}
.bg-gradient-dark {
    background: linear-gradient(135deg, #a91257 0%, #252830 50%, #1c2530 100%) !important;
}
.bg-soft-warning {
    background-color: #fff8e1 !important;
}
.card-voucher {
    cursor: pointer;
    transition: all 0.3s ease;
}
.card-voucher:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}
.text-white-50 {
    color: rgba(255,255,255,0.7) !important;
}

/* Card Vehicle (Coating & PPF) */
.card-vehicle {
    transition: all 0.3s ease;
}
.card-vehicle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}
.vehicle-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.vehicle-info .info-item:last-child {
    border-bottom: none;
}
.vehicle-info .info-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}
.vehicle-info .info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #343a40;
    text-align: right;
}