.product-stock-table-container {
    padding: 20px;
    width: 990px;
}

.product-stock-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.product-stock-table-header {
    background-color: #c1c1c1;
}

.product-stock-table-header th {
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.product-stock-table-row {
    border-bottom: 1px solid #ddd;
}

.product-stock-table-row td {
    padding: 10px;
}

.product-stock-table-input {
    width: 100px;
    height: 30px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.product-stock-table-old-qty {
    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 0;
    min-width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-stock-table-input-container {
    display: inline-flex;
}

.product-stock-input-modified {
    border: 1px solid orange;
}

.product-stock-input-success {
    border: 1px solid green;
}

.product-stock-display-none {
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}