.new-po-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    background-color: var(--lighten-bg-color);
    border-radius: 10px;
    color: var(--primary-text-color);
    border: var(--border-color) solid 1px;
}
.new-po-table table {
    border-collapse: collapse;
    padding: 0;
    margin: 10px 0;

}
.new-po-table input {
    outline: none;
    text-transform: uppercase;
    border: solid 1px gray;
    background-color: var(--accent-color-1);
    color: var(--primary-text-color);
}
.new-po-table select {
    outline: none;
    background-color: var(--accent-color-1);
    color: var(--primary-text-color);
}
.new-po-table input:focus,select:focus {
    border-color: var(--accent-color-2);
}

.cart-item-parent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 800px;
    background-color: var(--lighten-bg-color);
    border: solid 1px var(--border-color);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 5px;
}
.cart-item-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 2px;
}
.cart-item-qty {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.cart-item-qty input {
    border: transparent;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 5px;
    margin: 5px;
    min-width: 30px;
    max-width: 40px;
    min-height: 100%;
    text-align: center;
}

/* Left sidebar on the create_po screen */
.cart-sidebar {
    position: sticky;
    top: 50px;
    height: 800px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    
}
.cart-sidebar-container {
    position: sticky;
    top: 0;
}
.cart-sidebar-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px;
    background-color: var(--lighten-bg-color);
    border: solid 1px var(--border-color);
    margin: 2px;
}
.cart-sidebar-sku {
    padding: 3px;
}
.cart-sidebar-qty {
    display: flex;
    justify-content: center;
    align-items: center;
}
.view-cart-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.view-cart-btn a {
    display: block;
    text-decoration: none;
    color: black;
    background-color: var(--button-color);
    border: solid 1px var(--border-color);
    padding: 10px;
    width: 100px;
    text-align: center;
}
.view-cart-btn a:hover {
    border: solid 1px var(--accent-color-2);
    background-color: var(--button-hover);
}

.po-comments-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 100%;
    min-height: 150px;

}
.po-comments-div textarea {
    padding: 3px;
    border: solid 1px gray;
    background-color: var(--accent-color-1);
    color: var(--primary-text-color);
    min-width: 90%;
    min-height: 100px;
    resize: none;
}
.po-comments-div textarea:focus {
    outline: none;
    background-color: var(--accent-color-1);
    color: var(--primary-text-color);
    border-color: var(--accent-color-2);
}