html {
    scroll-behavior: smooth;
}

#additional_skus_list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 4px;
    margin-bottom: 15px;
}

#additional_skus_list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    overflow-x:hidden;
}

.remove-sku {
    cursor: pointer;
    color: #777777;
    background-color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 4px 8px;
    transition: background-color 0.3s ease-in-out;
}

.equipment-checkbox {
    line-height: normal;
    width: 25px;
    height: 25px;
}

.m-2 {
    margin: 1px;
}

.small-company-logo {
    height: 33px;
    width: 33px !important;
    object-fit: cover;
}

.suggestions {
    position: absolute;
    border: 1px solid #ccc;
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff;
    z-index: 999;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
}

.suggestion:hover {
    background-color: #f0f0f0;
}

body {
    background-color: #f4f6f9 !important;
}