/* Report Page Styles - Part 6: Forms and Ads */

/* Submit review form */
.submit-review {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.submit-review h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    margin: 0 2px;
    transition: all 0.2s ease;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f39c12;
}

.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Custom ad section */
.custom-ad-section {
    margin: 30px 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ad-container {
    padding: 20px;
    min-height: 100px;
}

.no-ad-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #7f8c8d;
}

.top-ad {
    margin-top: 20px;
    margin-bottom: 30px;
}

.bottom-ad {
    margin-top: 30px;
}

.inline-ad-container {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .report-header h1 {
        font-size: 1.8rem;
    }
    
    .score-section,
    .report-details {
        flex-direction: column;
    }
    
    .score-summary {
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding-left: 0;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .points-column {
        min-width: 100%;
    }
    
    .facts-container,
    .scam-directory-section {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .report-container {
        padding: 15px;
    }
    
    .report-header {
        padding: 20px 15px;
    }
    
    .report-header h1 {
        font-size: 1.5rem;
    }
    
    .report-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .score-display {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
