.actions-column {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.actions-column > * {
    cursor: pointer;
}

.title-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.title-container > h3 {
    margin: 0;
}

.title-container > a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.title-container > a .btn-text {
    padding: 0 5px;
}

.title-container > button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.title-container > button .btn-text {
    padding: 0 5px;
}

.title-container .title-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.title-container .title-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.title-container .title-buttons a .btn-text {
    padding: 0 5px;
}

.original-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.original-images img {
    max-width: 64px;
    object-fit: contain;
    /* border: 1px solid black; */
}

.original-images-import {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.original-images-import img {
    max-width: 32px;
    object-fit: contain;
}

.empty-text {
    font-size: 12px;
    color: rgb(155, 155, 155);
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-btn .btn-text {
    padding: 0 5px;
}

span#status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.imported-products .download-btn > span {
    font-size: 12px;
}

.imported-products > .row {
    border-left: #cacaca 5px solid;
    padding: 10px;
    background-color: #ededed;
    margin-bottom: 20px;
}

.add-row button {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    border-radius: 0;
}

.products_table {
    margin: 0 !important;
}

.products_table td {
    padding: 0;
}

.products_table input, .products_table textarea {
    height: 100%;
    width: 100%;
    border: none;
    padding: 8px;
}

.products_table td.text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 6px;
    border: 0;
}

.products_table td.text button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.delete-btn {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    gap: 5px;
}

.delete-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.multiselect {
    min-height: 36px;
    width: 100%;
    position: relative;
}

.multiselect .selections {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3px;
    min-height: 30px;
    padding: 3px;
    width: 100%;
    background-color: white;
}

.multiselect .selections input[type='text'] {
    flex: 1;
    outline: none;
    border: none;
    padding: 5px;
    min-width: 90px;
}

.multiselect .selections > div {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

.multiselect .selections > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5;
    padding: 3px;
    height: fit-content;
    border-radius: 5px;
    cursor: pointer;
    padding-left: 5px;
    gap: 5px;
}

.multiselect .selections .material-symbols-outlined {
    font-size: 18px;
    color: #a70000;
    font-weight: bold;
}

.multiselect .dropdown {
    display: none;
    z-index: 1000;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid gray;
    flex-direction: column;
    min-height: 10px;
    width: 100%;
}

.multiselect .dropdown > span {
    padding: 5px
}

.multiselect .dropdown > span:hover {
    cursor: pointer;
    background-color: #e5e5e5;
}

.dates-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.dates-container input, .dates-container select {
    background-color: white;
}

.dates-container > button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dates-container > button .btn-text {
    padding: 0 5px;
}

.dates-container .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.table-responsive.composed_products {
    overflow: visible;
}

span.new-qte {
    font-weight: bold;
}

.date-filtred {
    background-color: #ff3a3a;
    color: white;
}