.cbd-cell select {
    padding: 7px 40px 7px 12px;
    width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
    max-width: max-content;
}  
.cbd-cell select:hover {
    background: #baa063 ;
}
.cbd-cell select option {
    color: #fff;
    background: #baa063;
}
.cbd-cell select:focus {
    background: #baa063;
    outline: none;
}
.cbd-cell input {
    max-width: max-content;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cbd-cell input::placeholder {
    color: #212529;
    opacity: 0.4;
}
.cbd-cell input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #baa063;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(189, 189, 189, 0.25);
}