.custom-search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.custom-search-wrapper .btn-filter {
    display: none;
}

.container-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.custom-search-wrapper .custom-select-container{
    display: flex;
}

.custom-search-wrapper .btn-filter {
    display: none !important;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.filter-container .btn-filter {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    border: 1px solid var(--color-grey-30, #EFEFEF);
}

.custom-search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #EFEFEF;
    background: #FFF;
    position: relative;
}

/* Style untuk input */
.search-input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
}

/* Style untuk icon search */
.search-icon {
    font-size: 16px;
    color: #999;
}

/* Style untuk select dropdown */
.custom-select-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #EFEFEF;
    background: var(--color-white, #FFF);
}

/* Style untuk select input */
.custom-select-container select {
    width: 100%;
    height: 100%;
    padding-right: 40px;
    border-radius: 8px;
    background: #FFF;
    appearance: none; /* Hilangkan default arrow */
}

/* Style untuk icon select dropdown */
.select-icon {
    position: absolute;
    right: 12px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
}

.search-input:focus,
.custom-select-container select:focus {
    outline: none;
    box-shadow: none;
    border-color: unset; /* Tetap gunakan warna border default */
}

/* Style untuk isi input */
.search-input,
.custom-select-container select {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    color: #4C5257; /* Warna teks */
}

/* Style untuk placeholder */
.search-input::placeholder {
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #BDBDBD; /* Warna placeholder */
    opacity: 1; /* Pastikan placeholder terlihat penuh */
}

.custom-select-2 {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    flex: 1;
    border: none;
    background: transparent;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    color: #4C5257;
    padding: 0;
    outline: none;
    cursor: pointer;
}

/* Style icon dropdown */
.select-icon {
    position: absolute;
    right: 16px;
    color: var(--color-grey-50); /* Warna icon */
    pointer-events: none; /* Supaya klik tetap pada select */
}

.custom-select-2 {
    color: grey; /* Warna placeholder default */
}

.custom-select-2.valid {
    color: black; /* Warna normal saat option lain dipilih */
}

.custom-select-2.invalid {
    color: var(--color-grey-50); /* Warna merah saat placeholder masih dipilih */
}

#modalFilter .modal-content, #deleteModal .modal-content {
    border-radius: 24px;
    border: 0;
}

@media (max-width: 991px) {
    .custom-search-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .container-search {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: start;
        gap: 1rem;
    }

    .custom-search-wrapper {
        display: flex;
        flex-direction: column-reverse;
        justify-content: start;
        align-items: flex-start;
        gap: 1rem;
        flex-grow: 1;
        width: 100%;
    }

    .filter-container {
        width: 100%;
    }

    .filter-container .custom-search {
        width: 100%;
    }

    .custom-search-wrapper .custom-select-container{
        display: none;
    }

    .custom-search-wrapper .btn-filter {
        display: inline-flex !important;
    }

}