:root {
        --primary: #2c3e50;
        --secondary: #d35400;
        --bg: #f8fafc;
        --white: #ffffff;
        --text-dark: #1e293b;
    }

    body { 
        font-family: 'Inter', -apple-system, sans-serif; 
        background-color: var(--bg); 
        color: var(--text-dark); 
        line-height: 1.6;
    }
        
        .filter-section { text-align: center; margin-bottom: 20px; background: var(--white); padding: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        select { padding: 10px 20px; font-size: 16px; border-radius: 5px; border: 1px solid #ccc; cursor: pointer; outline: none; }
        
        /* Tablo Düzeni */
    table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 8px; /* Satırlar arasına hafif boşluk */
    }
        th {
        background-color: var(--primary);
        color: white;
        padding: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    td {
        background: white;
        padding: 15px;
        vertical-align: middle;
        border-top: 1px solid #edf2f7;
        border-bottom: 1px solid #edf2f7;
    }

/* Satır üzerine gelince vurgu */
    tr:hover td {
        background-color: #f1f5f9;
        transition: background 0.3s ease;
    }

    /* Açıklama metni */
    .desc-text {
        font-size: 0.95rem;
        color: #64748b;
        font-style: italic;
    }

        /* Arapça Kelimeler İçin Özel Okuma Ayarı */
    .arabic { 
        font-family: 'Amiri', serif; 
        font-size: 1.6rem !important; /* Arapça harfler doğası gereği küçük görünür, bu yüzden büyütüldü */
        direction: rtl; 
        font-weight: 700;
        color: #2c3e50;
        text-align: right;
        padding: 10px !important;
    }
       /* Türkçe Karşılıklar İçin Ayar */
    .turkish {
        font-weight: 600;
        color: var(--secondary);
        font-size: 1.1rem;
    }
        .tag { font-size: 0.8em; background: #e1f5fe; color: #0288d1; padding: 3px 8px; border-radius: 10px; margin-left: 10px; }
        
        .empty-msg { text-align: center; padding: 40px; color: #7f8c8d; display: none; }
/* Google Fonts Okunabilirlik İçin */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Inter:wght@400;600&display=swap');

:root {
    --primary: #2c3e50;
    --secondary: #d35400;
    --bg: #f8fafc;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg);
}

/* Başlık ve Geri Tuşu Yerleşimi */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Tuşu sola, başlığı ortaya iter */
    margin-bottom: 30px;
    padding: 10px 0;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

.back-button:hover {
    background: var(--primary);
    color: white;
}

h1 { 
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    margin: 0;
    font-size: 1.6rem;
    pointer-events: none;
}

/* Arapça Okunabilirlik Ayarı */
.arabic { 
    font-family: 'Amiri', serif; 
    font-size: 1.7rem !important; 
    direction: rtl; 
    font-weight: 700;
    color: #1a1a1a;
}

.turkish {
    font-weight: 600;
    color: var(--secondary);
}

.desc-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}