.filter-box {
    background-color: #f4f6fc;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.status-tabs {
    display: flex;
    gap: 10px;
}

.status-tab {
    font-family: 'Mulish';
    cursor: pointer;
    background-color: #EEEEEE;
    border-radius: 25px;
    margin-right: 10px;
    text-transform: none;
    padding: 10px 15px;
}

.status-tab.active {
    background-color: #ecb60b;
    color: white;
}

.status-tab:hover {
    text-decoration: none;
}

input.form-control,
.input-field select {
    display: block;
    padding: 10px 10px 9px 16px;
    border: 1px solid #AFAFAF;
    border-radius: 50px;
    font-family: "Muli", sans-serif;
    font-size: 14px;
    line-height: 24px;
    height: auto;
    font-weight: normal;
    color: #626262;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select-wrapper::after {
    content: "";
    position: absolute;
    bottom: 20%;
    right: 30px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333;
    pointer-events: none;
}

.suffix {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 3rem;
    right: 2rem;
    bottom: 0.4rem;
    position: absolute;
    color: #000;
    text-align: right;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.custom-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    color: #555;
    border: 1px solid #bbb;
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
    cursor: pointer;
}

.custom-select:focus {
    border: 2px solid #0059f7;
    outline: none;
}
