
/* Quote Request Form Styles */
.cbs-quote-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    background: #fff;
    padding: 20px;
}

.cbs-quote-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #444;
}

.cbs-quote-header .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #0073aa; /* Standard WP Blue or match theme */
}

.cbs-quote-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.cbs-form-group {
    margin-bottom: 15px;
}

.cbs-form-row {
    display: flex;
    gap: 20px;
}

.cbs-form-col {
    flex: 1;
}

.cbs-quote-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
    color: #444;
}

.cbs-quote-input,
.cbs-quote-select,
.cbs-quote-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px; /* Slight rounded corners as per modern standards, adjustable to 0 for exact match */
    font-size: 14px;
    box-sizing: border-box;
}

.cbs-quote-textarea {
    height: 80px;
    resize: vertical;
}

.cbs-captcha-container {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    width: fit-content;
}

.cbs-captcha-image {
    font-family: "Courier New", monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #ddd;
    display: inline-block;
    user-select: none;
}

.cbs-radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cbs-radio-label {
    font-weight: normal;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cbs-radio-label input {
    margin-right: 5px;
}

.cbs-submit-btn {
    background-color: #3b5998; /* Example Blue from image */
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cbs-submit-btn:hover {
    background-color: #2d4373;
}

.cbs-submit-btn:disabled {
    background-color: #7f8c8d;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
    .cbs-form-row {
        flex-direction: column;
        gap: 0;
    }
}
