/* Home Page Reports Section - Reports Page Layout */
:root {
    --primary-color: #4261ee;
    --secondary-color: #fc5a5a;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-dark: #111827;
    --text-muted: #374151;
    --gray-text: #666666;
    --danger-color: #ef4444;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Reports List Layout for Home Page */
.reports-list-home {
    max-width: 1000px;
    margin: 0 auto;
}

.reports-list-home .report-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.reports-list-home .report-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.reports-list-home .report-date {
    width: 90px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 500;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1.3;
}

.reports-list-home .report-content {
    flex-grow: 1;
    padding: 15px;
    position: relative;
}

.reports-list-home .report-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.reports-list-home .report-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 8px;
    line-height: 1.4;
    max-width: 85%;
}

.reports-list-home .leak-detected {
    display: flex;
    align-items: center;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 6px;
    margin: 15px 0 10px;
    font-size: 1.05rem;
    border-left: 4px solid var(--danger-color);
}

.reports-list-home .leak-detected i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.reports-list-home .report-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.reports-list-home .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.reports-list-home .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
    line-height: 1;
}

.reports-list-home .stat-label {
    font-size: 0.75rem;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.1;
}

.reports-list-home .report-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reports-list-home .report-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.reports-list-home .report-link i {
    margin-left: 3px;
    font-size: 0.8rem;
}

.reports-list-home .report-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.reports-list-home .report-tag.film {
    background-color: var(--primary-color);
}

.reports-list-home .report-tag.series {
    background-color: var(--secondary-color);
}

.reports-list-home .report-tag.telegram {
    background-color: #0088cc;
}

.reports-list-home .report-tag.terabox {
    background-color: #f59e0b;
}

/* Make report stats more compact when following leak-detected */
.reports-list-home .leak-detected + .report-stats {
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0 10px;
}

.reports-list-home .leak-detected + .report-stats .stat {
    min-width: 80px;
    margin-right: 5px;
}

/* Responsive adjustments for reports list */
@media screen and (max-width: 768px) {
    .reports-list-home .report-item {
        flex-direction: column;
    }
    
    .reports-list-home .report-date {
        width: 100%;
        padding: 10px;
        text-align: left;
    }
    
    .reports-list-home .report-content p {
        max-width: 100%;
    }
    
    .reports-list-home .report-stats {
        gap: 8px;
    }
    
    .reports-list-home .stat {
        min-width: 60px;
    }
}
