
    .hero {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      position: relative;
    }
  .hero.dynamic-bg {
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .hero .overlay {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 2rem;
      /* background-color: rgba(0, 0, 0, 0.4); */
      border-radius: 12px;

    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 1.5rem;
      }
      .hero h2 {
        font-size: 1rem;
      }
    }
 
  .nav-link{
    color: white;
  }


   html, body {
      height: 100%;
      margin: 0;
  }

  body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
       padding-top: 70px;
  }

  .main-layout {
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  main {
      flex: 1;
  }

  .btn{
  width: 90px;
  font-weight: 700;
}

.spanSts{
  width: 90px;
  font-weight: 700;
  text-align:center;text-transform: uppercase;
}
.btn-success:hover{
    color:white;
    background-color:  #31c90b; 
}
.modal-header{
  background-color:#198754;
  color:white;
 }
 .btn-close{
  background-color:#fff;
 }

.modalcari{
    background-color:#9be70d;
    color:white;
 }

 input.form-control[readonly] {
    background-color: #e9ecef;  /* abu muda */
    color: #495057;             /* teks abu tua */
    cursor: not-allowed;
  }

  
  .modal-backdrop.stacked-backdrop {
    z-index: 1050 !important; /* backdrop untuk modal utama */
  }

  .clsModal {
    z-index: 1060 !important; /* pastikan lebih tinggi dari modal utama */
  }
   thead.thead-green th {
      background-color:#198754;
      color: white;
  }
   .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

  .table thead th {
      position: sticky;
      top: 0;
      background-color: #198754; /* hijau seperti btn-success */
      color: white;
      z-index: 1;
  }
  .table thead tr {
    text-align: center;
  }

  .scrolTabel{
    overflow-y: auto;
    max-height: calc(87vh - 200px); /* Sesuaikan 200px dengan margin atau padding */
    height: 25vh;
 }