/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 07 2026 | 08:43:23 */
/* Report Form Styling for Contact Form 7 */

.report-intro-box {
    background: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #dc3545;
    margin-bottom: 30px;
    border-radius: 4px;
}

.report-intro-box h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.report-intro-box p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Form Container */
.wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Labels */
.wpcf7-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    font-size: 15px;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    margin-top: 8px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Textarea */
.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* File Upload */
.wpcf7-form input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s;
    margin-top: 8px;
}

.wpcf7-form input[type="file"]:hover {
    border-color: #007bff;
    background: #e7f3ff;
}

/* Checkboxes */
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-acceptance {
    margin-top: 10px;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0 0 10px 0;
    display: block;
}

.wpcf7-form .wpcf7-list-item-label {
    font-weight: normal;
    margin-left: 8px;
}

.wpcf7-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    vertical-align: middle;
}

/* Platform Checkboxes Grid */
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
}

/* Consent Section */
.consent-section {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 25px;
    border-radius: 4px;
    margin: 30px 0;
}

.consent-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
}

.consent-section .wpcf7-list-item {
    margin-bottom: 15px;
    line-height: 1.6;
}

.consent-section .wpcf7-list-item-label {
    font-weight: normal;
}

/* Submit Button */
.wpcf7-form .submit-button,
.wpcf7-form input[type="submit"] {
    background: #dc3545;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 20px;
}

.wpcf7-form .submit-button:hover,
.wpcf7-form input[type="submit"]:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.wpcf7-form .submit-button:disabled,
.wpcf7-form input[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Response Messages */
.wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Validation Errors */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

span.wpcf7-not-valid {
    border-color: #dc3545 !important;
}

/* Spinner/Loading */
.wpcf7-spinner {
    margin: 0 10px;
}

/* Required Asterisk */
.wpcf7-form .required {
    color: #dc3545;
    margin-left: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 20px;
    }
    
    .report-intro-box {
        padding: 20px;
    }
    
    .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
        width: 100%;
        margin-right: 0;
    }
    
    .wpcf7-form .submit-button,
    .wpcf7-form input[type="submit"] {
        padding: 12px 30px;
    }
}

/* File Upload Helper Text */
.wpcf7-form .wpcf7-file + .wpcf7-not-valid-tip {
    margin-top: 5px;
}

/* Additional Spacing */
.wpcf7-form br {
    display: none;
}

/* Focus States for Accessibility */
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form input[type="checkbox"]:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}
/* Submit Button */
.wpcf7-form input[type="submit"] {
    background: #dc3545;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover {
    background: #c82333;
}