  .fogasok-toplista-tablazat {
            margin: 25px 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        .toplista-header {
            margin-bottom: 20px;
        }
        
        .toplista-cim {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0 0 10px 0;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            color: #2c3e50;
        }
        
        .tablazat-kontener {
            overflow-x: auto;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .toplista-tablazat {
            width: 100%;
            border-collapse: collapse;
            background: white;
            font-size: 0.9rem;
        }
        
        .toplista-tablazat thead {
            background: linear-gradient(135deg, #16518b 0%, #569ada 100%);
            color: white;
        }
        
        .toplista-tablazat th {
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .toplista-tablazat td {
            padding: 14px 12px;
            border-bottom: 1px solid #e2e8f0;
            vertical-align: middle;
        }
        
        .toplista-sor {
            transition: background-color 0.2s ease;
        }
        
        .toplista-sor:hover {
            background-color: #f7fafc;
        }
        
        .helyezes-1 {
            background: linear-gradient(90deg, rgba(255,215,0,0.08) 0%, rgba(255,215,0,0) 100%);
        }
        
        .helyezes-2 {
            background: linear-gradient(90deg, rgba(192,192,192,0.08) 0%, rgba(192,192,192,0) 100%);
        }
        
        .helyezes-3 {
            background: linear-gradient(90deg, rgba(205,127,50,0.08) 0%, rgba(205,127,50,0) 100%);
        }
        
        .helyezes-cell {
            width: 70px;
            text-align: center;
        }
        
        .helyezes-tartalom {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .helyezes-szam {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #e2e8f0;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.9rem;
            color: #4a5568;
        }
        
        .fogas-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .fogas-mini-kep {
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .mini-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .fogas-cim {
            font-weight: 600;
            color: #2d3748;
            font-size: 0.95rem;
        }
        
        .suly-cell strong,
        .meret-cell strong {
            color: #2c5282;
            font-size: 1rem;
        }
        
        .suly-cell,
        .meret-cell {
            font-weight: 500;
            white-space: nowrap;
        }
        
        .datum-cell {
            white-space: nowrap;
            color: #4a5568;
        }
        
        .helyszin-cell,
        .horgasz-cell {
            color: #4a5568;
        }
        
        .nincs-adat {
            color: #cbd5e0;
            font-style: italic;
        }
        
        .no-data-message {
            text-align: center;
            padding: 40px 20px;
            background: #f7fafc;
            border-radius: 12px;
            color: #718096;
            font-size: 1rem;
        }

        .helyezes-tartalom svg text {
            transform: translateY(-2px);
        }
        
        /* Oszlopok szélessége */
        .oszlop-helyezes { width: 70px; }
        .oszlop-fogas { min-width: 200px; }
        .oszlop-suly { width: 100px; }
        .oszlop-meret { width: 100px; }
        .oszlop-datum { width: 110px; }
        .oszlop-helyszin { min-width: 150px; }
        .oszlop-horgasz { min-width: 120px; }
        
        /* Mobil nézet - 768px alatt */
        @media (max-width: 768px) {
            .toplista-cim {
                font-size: 1.3rem;
            }
            
            .toplista-tablazat {
                font-size: 0.8rem;
            }
            
            .toplista-tablazat th,
            .toplista-tablazat td {
                padding: 10px 8px;
            }
            
            .oszlop-helyezes { width: 55px; }
            .oszlop-suly { width: 70px; }
            .oszlop-meret { width: 70px; }
            .oszlop-datum { width: 85px; }
            
            .helyezes-cell svg {
                width: 24px;
                height: 24px;
            }
            
            .helyezes-szam {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
            
            .fogas-mini-kep {
                width: 35px;
                height: 35px;
            }
            
            .fogas-cim {
                font-size: 0.85rem;
            }
            
            .suly-cell strong,
            .meret-cell strong {
                font-size: 0.9rem;
            }
            
            /* Néhány oszlop elrejtése nagyon kicsi képernyőn */
            @media (max-width: 600px) {
                .oszlop-helyszin {
                    display: none;
                }
                .helyszin-cell {
                    display: none;
                }
                
                .oszlop-meret {
                    width: 60px;
                }
            }
            
            /* Extra kicsi képernyő */
            @media (max-width: 480px) {
                .oszlop-datum {
                    display: none;
                }
                .datum-cell {
                    display: none;
                }
                
                .oszlop-horgasz {
                    min-width: 100px;
                }
            }
        }
        
        /* Táblázat görgethető mobilon */
        @media (max-width: 768px) {
            .tablazat-kontener {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .toplista-tablazat {
                min-width: 600px;
            }
        }
        
        /* Animációk */
        .toplista-sor {
            animation: fadeInUp 0.3s ease-out;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Stagger animation a soroknak */
        .toplista-sor:nth-child(1) { animation-delay: 0.05s; }
        .toplista-sor:nth-child(2) { animation-delay: 0.1s; }
        .toplista-sor:nth-child(3) { animation-delay: 0.15s; }
        .toplista-sor:nth-child(4) { animation-delay: 0.2s; }
        .toplista-sor:nth-child(5) { animation-delay: 0.25s; }
        .toplista-sor:nth-child(6) { animation-delay: 0.3s; }
        .toplista-sor:nth-child(7) { animation-delay: 0.35s; }
        .toplista-sor:nth-child(8) { animation-delay: 0.4s; }
        .toplista-sor:nth-child(9) { animation-delay: 0.45s; }
        .toplista-sor:nth-child(10) { animation-delay: 0.5s; }

/* Mobil nézet - kártya elrendezés */
.mobil-nezet {
    display: none;
}

.fogas-kartya {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid #e2e8f0;
}

.fogas-kartya:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.kartya-helyezes-1 {
    border-left-color: #FFD700;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
}

.kartya-helyezes-2 {
    border-left-color: #C0C0C0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.kartya-helyezes-3 {
    border-left-color: #CD7F32;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.kartya-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.kartya-cim {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    flex: 1;
}

.kartya-adatok {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kartya-sor {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
    gap:10px;
}

.kartya-sor:last-child {
    border-bottom: none;
}

.kartya-cimke {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.kartya-ertek {
    font-size: 0.9rem;
    color: #2d3748;
    text-align: right;
}

.kartya-ertek strong {
    color: #2c5282;
    font-size: 1rem;
}

.kartya-kep {
    margin-top: 12px;
    text-align: center;
}

.kartya-kep img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 150px;
    object-fit: cover;
}

/* Asztali nézet 768px felett */
@media (min-width: 769px) {
    .mobil-nezet {
        display: none;
    }
    
    .asztali-nezet {
        display: block;
    }
}

/* Mobil nézet 768px alatt */
@media (max-width: 768px) {
    .asztali-nezet {
        display: none;
    }
    
    .mobil-nezet {
        display: block;
    }
    
    .toplista-cim {
        font-size: 1.3rem;
    }
}

/* Extra kicsi képernyőn a kártya további optimalizálása */
@media (max-width: 480px) {
    .fogas-kartya {
        padding: 12px;
    }
    
    .kartya-header {
        flex-direction: column;
        text-align: center;
    }
    
    .kartya-cim {
        font-size: 1rem;
    }
    
    .kartya-sor {
        /*flex-direction: column;*/
        gap: 4px;
    }
    
    .kartya-cimke {
        font-size: 0.8rem;
    }
    
    .kartya-ertek {
        text-align: left;
        /*font-size: 0.85rem;*/
    }
    
    .kartya-ertek strong {
        /*font-size: 0.9rem;*/
    }
}        