/* Warranty/RMA Account Page - Minimal Styling, Let WooCommerce Handle the Rest */

/* Header */
.warranty-rma-header {
    margin-bottom: 1em;
}

.warranty-rma-header::after {
    content: "";
    display: table;
    clear: both;
}

/* Form Styling */
.warranty-rma-form .form-row {
    margin-bottom: 1em;
}

.warranty-rma-form .form-field {
    margin-bottom: 1em;
}

.warranty-rma-form .select2-container {
    width: 100% !important;
}

/* Prevent Select2 dropdown from overlapping the input - gap between input and results list */
.warranty-rma-product-dropdown.select2-dropdown--below {
    margin-top: 30px;
}

.selected-products-list {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.selected-products-list .selected-products-ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.selected-products-list .selected-products-ul li {
    margin-bottom: 4px;
}

.product-quantities-wrapper {
    margin-top: 15px;
    padding: 12px;
    background: #f0f8ff;
    border: 1px solid #b3d9ff;
    border-radius: 6px;
}

.product-quantities-list {
    margin-top: 10px;
}

.product-quantity-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-quantity-row label {
    min-width: 200px;
    font-weight: 500;
}

.product-quantity-input {
    width: 80px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.woocommerce-page select {
    padding: 6px 10px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .btn-new-request {
        margin-bottom: 1em;
    }
}
