*{
    margin: 0;
    padding: 0;
}
img{
    max-width:180px;
  }

.scroll-box {
    max-height: 100%; /* Tinggi maksimum kotak */
    overflow-y: auto;  /* Scroll vertikal jika melebihi batas */
    width: 100%;       /* Lebar penuh */
}

/* Styling opsional untuk scrollbar */
.scroll-box::-webkit-scrollbar {
    width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 3px;
}

.scroll-box::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.chart-responsive {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .chart-responsive {
        width: 300px;
        height: 300px;
    }
}

/* untuk merubah button dengan warna pilihan */
/* .btnPrimary {
    color: white;
    background-color: #667080;
    border: 2px solid black;
}

.btnPrimary:hover {
    color: white;
    background-color: #5b6370;
    border: 2px solid black;
}

.btnPrimary:active,
.btnPrimary.active,
.btnPrimary:active:focus,
.btnPrimary.active:focus {
    background-color: #667080;
    border: 2px solid black;
    color: white;
} */





/* untuk menghilangkan biru-biru bawaan bootstrap saat di klik */
/* .form-control:focus, .form-select:valid:focus{
    box-shadow: none;
} */

/* untuk posisi card login */

.card {
    width: 350px
}
/* end */

/* start search form btn */
.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    outline: 0;
}
/* end */

/* circle for status */
.dot {
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.dot-requested {
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.dot-approved {
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.dot-hold {
    width: 10px;
    height: 10px;
    background-color: #FFBF43;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.bg-request-status{
    background-color: #9CC9FE !important;
    border-style: solid;
    border-color: #3A94FE;
}
.bg-request-approved{
    background-color: #95FF9A;
    border-style: solid;
    border-color: #57FF5D;
}
.bg-request-hold{
    background-color: #FFD78A;
    border-style: solid;
    border-color: #FFBF43;
}
.bg-request-rejected{
    background-color: #FFBFBF;
    border-style: solid;
    border-color: #FF5656;
}
/* end */

/* css for navigation header document list */
.add-request{
    background-color: #667080;
    color: white;
}

.add-request:hover{
    background-color:#667080;
    color: white;
}

.custom-btn .add-request:active{
    background-color:#667080;
    color: white;
}

.bd-head{
    border-bottom: 1px solid #667080 !important;
}

.dropdown-cstm{
    color: #667080;
}

.dropdown-toggle::after {
    color: #667080;
}
/* end */

/* list data di bagian dashboard */
.list-request{
    background-color: #F2F2F2;
    border: 2px solid #3A94FE;
}
.list-account{
    background-color: #F2F2F2;
    border: 2px solid #5b6370;
}

/* modal custom */
.modal-cstm{
    background-color: #F2F2F2;
}


/* table custom untuk di halaman detail */
.table-cstm{
    background-color: #F2F2F2;
}
.table-cstm th,
.table-cstm tr td{
    background-color: #F2F2F2;
}
/* end */

/* logo */
.d-logo{
    display: flex;
    justify-content: space-between;
}

/* Account Settings */
    .show-modal {
        display: block !important;
    }

    .sticky-top{
        z-index: 100;
    }


/* Style umum untuk container Select2 */
    /* select 2 untuk multiple */
    .select2-container--default .select2-selection--multiple {
        height: auto;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border-radius: var(--bs-border-radius);
        border: 1px solid grey;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

  /* Style untuk area seleksi single Select2 */
  .select2-container .select2-selection--single {
    height: auto;
    padding: 0.325rem 0.25rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border-radius: var(--bs-border-radius);
    border: 1px solid black;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  }

  /* Style untuk elemen render hasil seleksi */
  .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* Style untuk panah dropdown */
  .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 1.25rem;
  }

  /* Style untuk elemen dropdown */
  .select2-container .select2-dropdown {
    border: var(--bs-border-width) solid var(--bs-border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid black;
  }

  /* Style untuk opsi dropdown */
  .select2-container .select2-results__option {
    padding: 0.5rem 1rem;
    cursor: pointer;
  }

  /* Style untuk opsi dropdown ketika dihover */
  .select2-container .select2-results__option:hover {
    background-color: grey;
    color: #fff;
  }

  /* style untuk mengatur tata letak yang di-highlight dan dapat dipilih dalam dropdown */
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: grey;
    color: white;
  }

  /* Style untuk pesan tidak ada hasil */
  .select2-container .select2-results__message {
    padding: 0.5rem 1rem;
  }

  /* Style untuk placeholder */
  .select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--bs-placeholder-color);
  }

  /* Style untuk status loading */
  .select2-container .select2-container--open .select2-dropdown--below {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  /* Style untuk status tidak ada hasil */
  .select2-container--open.select2-container--below .select2-dropdown--no-results {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Style untuk mengatur background place holder dan menyesuaikan font size di placeholder */
  .form-control::placeholder {
    font-size: 16px;
    color: grey;
}

@media screen and (max-width:768px){
    /* menghilangkan button pada saat tampilan di hp */
    .btn-hide{
        display: none;
    }

    /* menyesuaikan fontsize di list account */
    .list-account h5{
        font-size: 18px;
    }


    /* .logo-cstm{
        width: 50px;
        font-size: 15px;
    } */

    /* .nav-cstm{
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
    } */
}

/* Iqbal */
@media screen and (max-width:768px){
    .bal-hide{
        display: none;
    }

    .bal-font{
        font-size: 10px;
    }
}

@media screen and (min-width:768px){
    .bal-show{
        display: none;
    }
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
      font-size: 11px;
    }
  }

  .stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
  }

  .stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
  }

  .stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
  }

  .stepper-item.active .step-counter{
    font-weight: bold;
    background-color: #8ecae6;
  }

  .stepper-item.reject .step-counter{
    background-color: red;
  }

  .stepper-item.completed .step-counter {
    background-color: #4bb543;
  }

  .stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
  }

  .stepper-item:first-child::before {
    content: none;
  }
  .stepper-item:last-child::after {
    content: none;
  }

  .navbar-bg {
    background: linear-gradient(0deg, rgba(129,0,0,1) 12%, rgba(175,0,0,1) 43%);
  }

  .bg-eei {
    background-image: url('/images/assets/EEIBackground.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    }

    .pict-undermaintenance {
        width: 100vh;
    }

    @media screen and (max-width:768px){
        .bal-hide{
            display: none;
        }

        .bal-font{
            font-size: 12px;
        }
    }

    @media screen and (min-width:768px){
        .bal-show{
            display: none;
        }
    }




