#product-fields {
    margin-bottom: 20px;
}

.product-entry {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.form-column {
    flex: 1; /* Ισομεγέθη στήλες */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

select,
input[type="number"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

button.remove-product {
    background: none;
    border: none;
    cursor: pointer;
    color: red;
    font-weight: bold;
}

button#add-product,
button[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button#add-product {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
}

button#add-product:hover {
    background-color: #005b8f;
}

.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

.wp-list-table th, .wp-list-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.wp-list-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.wp-list-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.completed-row {
    background-color: #d4edda !important; /* Ανοιχτό πράσινο */
    color: #155724; /* Σκούρο πράσινο */
}

.completed-row td {
    font-weight: bold;
}
