form.returnFormula
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2%;
}
form.returnFormula input {
    margin-bottom: 15px;
    width: 350px;
    max-width: 100%;
}


/* Styling for the entire return form */
.return-items-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header for the return form */
.return-items-form h2 {
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Paragraph text */
.return-items-form p {
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
}

/* Styling for the contact details section */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f1f1f1;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.contact-details div {
    font-size: 1rem;
    color: #444;
}

.contact-details .orderId {
    font-weight: bold;
    grid-column: 1 / -1; /* Make the orderId span the full width */
}

/* Styling for the product list table */
.product-list {
    margin-bottom: 2rem;
}

.product-list h3 {
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

.product-list table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-list th,
.product-list td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.product-list thead th {
    background-color: #876a41;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.product-list tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.product-list tbody tr:hover {
    background-color: #e9ecef;
}

/* Styling for the select dropdown */
.return-quantity-select {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Styling for buttons */
.form-actions {
    text-align: center;
}

.submit-btn,
.cancel-btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    margin: 0 10px;
}

.submit-btn {
    background-color: #28a745;
    color: white;
}

.submit-btn:hover {
    background-color: #218838;
}

.cancel-btn {
    background-color: #dc3545;
    color: white;
}

.cancel-btn:hover {
    background-color: #c82333;
}

.return-options select, .return-options input
{
    margin-bottom: 10px;
}