/* Faaliyet Raporları Grid Styles */

.faaliyet-raporlari-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.report-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
    text-align: center;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #1a365d;
}

.report-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.report-title {
    font-size: 16px !important;
    font-weight: bold;
    color: #1a365d;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
}

.report-icon {
    flex-shrink: 0;
    width: 48px !important;
    height: 48px !important;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    transition: all 0.3s ease;
}

.report-card:hover .report-icon {
    background: #1a365d;
    color: #ffffff;
}

.no-reports {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reports-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faaliyet-raporlari-grid {
        padding: 20px 10px;
    }
    
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .report-card {
        padding: 20px;
        min-height: 100px;
    }
    
    .report-title {
        font-size: 14px;
    }
    
    .report-icon {
        width: 40px;
        height: 40px;
    }
    
    .report-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .report-card {
        padding: 16px;
        min-height: 80px;
        flex-direction: row;
        text-align: left;
    }
    
    .report-content {
        margin-bottom: 0;
        margin-right: 16px;
        justify-content: flex-start;
    }
    
    .report-icon {
        align-self: center;
        width: 36px;
        height: 36px;
    }
    
    .report-icon svg {
        width: 18px;
        height: 18px;
    }
}
