/* Denetim Raporları Timeline Styles */

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

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1a365d;
    border-radius: 2px;
}

.timeline-year {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.timeline-year:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    width: 200px;
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 4px solid #1a365d;
    border-radius: 50%;
    z-index: 2;
}

.year-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
    white-space: nowrap;
}

.timeline-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    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;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

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

.report-content {
    flex: 1;
}

.report-title {
    font-size: 18px;
    font-weight: bold;
    color: #1a365d;
    margin: 0 0 8px 0;
    line-height: 1.4;
}


.report-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .denetim-raporlari-timeline {
        padding: 20px 10px;
    }
    
    .timeline-line {
        left: 60px;
    }
    
    .timeline-marker {
        width: 120px;
    }
    
    .timeline-marker::before {
        left: 56px;
    }
    
    .year-label {
        font-size: 20px;
    }
    
    .timeline-year {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .report-card {
        padding: 20px;
        min-height: 80px;
    }
    
    .report-title {
        font-size: 16px;
    }
    
    
    .report-icon {
        width: 40px;
        height: 40px;
    }
    
    .report-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-line {
        left: 40px;
    }
    
    .timeline-marker {
        width: 80px;
    }
    
    .timeline-marker::before {
        left: 36px;
    }
    
    .year-label {
        font-size: 18px;
    }
    
    .report-card {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .report-icon {
        align-self: flex-end;
    }
}
