/* Campsite Quote Estimator – Professional Styling (Left-Aligned, Spacious Text Inputs) */
.cqe-wrapper {
    max-width: 700px;
    margin: 2rem 0;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.cqe-heading {
    color: #2c5e1a;
    font-size: 2rem;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5e9;
}

.cqe-field {
    margin: 24px 0;
}

.cqe-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.cqe-field input[type="text"],
.cqe-field select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.2s;
    box-sizing: border-box;
    min-height: 52px;
    /* Force larger font and no spinner */
    -moz-appearance: textfield;
    appearance: textfield;
}
.cqe-field input[type="text"]::-webkit-outer-spin-button,
.cqe-field input[type="text"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cqe-field input:focus,
.cqe-field select:focus {
    outline: none;
    border-color: #4caf50;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.cqe-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin: 12px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
    min-width: 200px;
    min-height: 52px;
    background: #2e7d32;
    color: white;
}

.cqe-button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

.cqe-result {
    background: #f8fff9;
    border-left: 4px solid #4caf50;
}

.cqe-result p {
    margin: 14px 0;
    font-size: 1.05rem;
}

.cqe-result strong {
    color: #2c5e1a;
}

.cqe-result h3 {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px dashed #c8e6c9;
    font-size: 1.4rem;
    color: #1b5e20;
}

.cqe-actions {
    margin-top: 30px;
}

/* Mobile: stack buttons vertically but keep left-aligned */
@media (max-width: 600px) {
    .cqe-wrapper {
        margin: 1.5rem 0;
        padding: 20px;
    }
    .cqe-button {
        display: block;
        margin: 12px 0;
        width: 100%;
        max-width: 300px;
    }
}