/**
 * Basic styles for Turnstile Forms & Testimonials.
 *
 * We keep these styles minimal and non‑intrusive so they can easily inherit
 * styling from the active theme. If you wish to customize the appearance
 * further, you can override these styles in your theme’s stylesheet.
 */
.ttc-form {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.ttc-form label {
    display: block;
    margin-bottom: 0.25em;
    font-weight: 600;
}

.ttc-form input[type="text"],
.ttc-form input[type="email"],
.ttc-form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

.ttc-form button.ttc-submit-button {
    padding: 0.6em 1.2em;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.ttc-form button.ttc-submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.ttc-testimonial-list {
    margin: 1em 0;
}
.ttc-testimonial {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #ddd;
}
.ttc-testimonial-title {
    margin-top: 0;
    font-size: 1.25em;
    font-weight: bold;
}