
.item-orders {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    flex-direction: column;
}

.item-list {
    display: flex;
    flex-direction: row;
    padding: 5px;
}

.item-counter {
    margin-right: 10px;
}

.item-list p {
    margin-top: 0;
    margin-bottom: 0;
}

.item-list svg {
    margin: 5px;
}

.item-list i {
    margin: 5px;
}

.item-username {
    margin-right: 5px;
}

.item-name {
    margin-right: 5px;
}

.flex-divider {
    flex-grow: 1;
}

.information-row {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.button-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.status-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

.status-button-processing{
    display: inline-block;
    font-weight: 400;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    background-color: #fc801b;
    color: white;
}

.status-button-processing:hover {
    background-color: #fc801b;
}

.cursor-pointer:hover {
    cursor: pointer;
}

.user-order-background {
    background-color: var(--background-shade);
}

@media screen and (max-width: 600px) {
    .item-list {
        flex-direction: column;
    }

    .item-list p {
        font-size: 1rem !important;
    }

    .button-row input {
        font-size: 0.8rem;
        flex-grow: 1;
    }

    .status-button {
        font-size: 0.8rem;
        flex-grow: 1;
    }
}