/* Report Scam Form Stylesheet */
.report-scam-container {
    max-width: 680px;
    margin: 40px auto 60px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-family: 'Inter', sans-serif;
}
.report-scam-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.report-scam-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}
.report-step-badge {
    background: #dbeafe;
    color: #1e40af;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Profile Preview Card */
.report-profile-preview {
    display: flex;
    gap: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}
.report-profile-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.report-profile-thumb-placeholder {
    width: 80px;
    height: 80px;
    background: #fee2e2;
    color: #e91e8c;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}
.report-profile-info {
    flex-grow: 1;
}
.report-profile-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 6px;
}
.report-profile-meta {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}
.report-profile-meta i {
    color: #e91e8c;
    width: 16px;
}

/* Form Styling */
.report-form-group {
    margin-bottom: 20px;
}
.report-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
}
.report-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #1f2937;
    transition: border-color 0.2s;
}
.report-form-control:focus {
    outline: none;
    border-color: #e91e8c;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}

/* Cloudflare Mock Captcha */
.cloudflare-mock-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 10px 16px;
    margin-bottom: 24px;
    width: 280px;
}
.cloudflare-success-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #15803d;
    font-size: 14px;
    font-weight: 600;
}
.cloudflare-success-indicator i {
    font-size: 20px;
}
.cloudflare-logo-area {
    text-align: right;
}
.cloudflare-logo-area img {
    height: 16px;
}
.cloudflare-logo-area .cf-text {
    font-size: 8px;
    color: #6b7280;
    margin-top: 2px;
}

/* Action Button */
.btn-report-submit {
    display: block;
    width: 100%;
    background: #e91e8c;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}
.btn-report-submit:hover {
    background: #c41578;
}
.btn-report-submit:active {
    transform: scale(0.99);
}

@media (max-width: 576px) {
    .report-scam-container {
        padding: 20px;
        margin: 20px 10px;
    }
}
