/* Style for Car Repair Quote Plugin */

#crq-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#crq-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

#crq-form input[type="text"],
#crq-form input[type="email"],
#crq-form input[type="number"],
#crq-form input[type="date"],
#crq-form input[type="file"],
#crq-form select,
#crq-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
}

#crq-form textarea {
    min-height: 120px;
}

#crq-form select {
    cursor: pointer;
}

#crq-form input[type="file"] {
    padding: 5px;
}

#crq-form .form-section {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

#crq-form .form-section:last-child {
    border-bottom: none;
}

#crq-form .section-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    display: inline-block;
    padding-bottom: 3px;
}

#crq-form button {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

#crq-form button:hover {
    background: #005f7a;
    transform: translateY(-2px);
}

#crq-response {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #e7f7e7;
    color: #2c662d;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    #crq-form {
        padding: 15px;
    }

    #crq-form .section-title {
        font-size: 16px;
    }

    #crq-form button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

.crq-thank-you {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.crq-thank-you h2 {
    color: #333;
    margin-bottom: 15px;
}


.crq-thank-you p {
    color: #666;
    line-height: 1.6;
}


.quote-preview {
    margin-top: 20px;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 5px;
}


.quote-preview h3 {
    margin-top: 0;
    color: #444;
}


.quote-preview pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: Arial, sans-serif;
}