/**
 * Frontend Styles for Quote Generator
 */

.quote-generator-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.quote-generator-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.quote-result {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.quote-result h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.quote-result table {
    width: 100%;
    margin-bottom: 20px;
}

.quote-result th,
.quote-result td {
    padding: 10px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.quote-result th {
    background-color: #e9ecef;
    font-weight: bold;
}

.quote-result .text-end {
    text-align: right;
}

.quote-result .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Accordion styling */
#product-accordion .accordion-button {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    font-weight: 500;
}

#product-accordion .accordion-button:not(.collapsed) {
    color: #007cba;
    background-color: #e9ecef;
}

#product-accordion .accordion-collapse {
    border: 1px solid #dee2e6;
    border-top: none;
}

#product-accordion .accordion-body {
    padding: 15px;
}

@media (max-width: 768px) {
    .quote-generator-form {
        padding: 15px;
    }

    .quote-result th,
    .quote-result td {
        padding: 8px;
        font-size: 14px;
    }
}