/* TJK AGF API Viewer - v8.0.0 - Optimized & Clean */

/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tjk-agf-api-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #0d1117;
    color: #c9d1d9;
}

/* Loading */
.tjk-loading {
    text-align: center;
    padding: 40px;
    color: #8b949e;
}

.tjk-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top-color: #58a6ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hipodrom Seçici */
.tjk-hipodrom-selector {
    margin-bottom: 20px;
    padding: 15px;
    background: #161b22;
    border-radius: 6px;
}

.tjk-hipodrom-selector label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #8b949e;
}

.tjk-dropdown {
    width: 100%;
    padding: 10px 15px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #c9d1d9;
    font-size: 15px;
    cursor: pointer;
}

.tjk-dropdown:focus {
    outline: none;
    border-color: #58a6ff;
}

/* Bahis Tabs */
.tjk-bahis-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tjk-bahis-tab {
    padding: 10px 20px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #8b949e;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}

.tjk-bahis-tab:hover {
    background: #1c2128;
    border-color: #58a6ff;
}

.tjk-bahis-tab.active {
    background: #58a6ff;
    border-color: #58a6ff;
    color: #fff;
}

/* Ayak Navigation */
.tjk-ayak-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tjk-ayak-btn {
    padding: 8px 16px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #8b949e;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}

.tjk-ayak-btn:hover {
    background: #1c2128;
}

.tjk-ayak-btn.active {
    background: #238636;
    border-color: #238636;
    color: #fff;
}

.tjk-ayak-btn.completed {
    background: #1f6feb;
    border-color: #1f6feb;
    color: #fff;
}

.tjk-ayak-btn.completed::after {
    content: ' ✓';
    margin-left: 4px;
}

/* =========================================
   AT TABLOSU VE HİZALAMA AYARLARI
   ========================================= */

.tjk-at-table {
    width: 100%;
    border-collapse: collapse;
    background: #161b22;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    table-layout: fixed;
}

.tjk-at-table thead {
    background: #1f2937;
}

.tjk-at-table th {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #8b949e;
    border-bottom: 1px solid #30363d;
    vertical-align: middle;
}

.tjk-at-table td {
    padding: 12px;
    border-bottom: 1px solid #30363d;
    font-size: 14px;
    vertical-align: middle;
}

/* --- HİZALAMA SINIFLARI --- */
.tjk-align-center {
    text-align: center !important;
}

.tjk-align-left {
    text-align: left !important;
}

.tjk-align-right {
    text-align: right !important;
}

/* AGF TABLOSUNDA JOKEY SÜTUNU GİZLİ */
.tjk-at-table .col-jokey {
    display: none !important;
}

/* AGF SÜTUNU SAĞDAN BOŞLUK */
.tjk-at-table .col-agf {
    padding-right: 15px !important;
    white-space: nowrap;
    text-align: right;
}

/* At Satırları */
.tjk-at-row {
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}

.tjk-at-row:hover:not(.kosmaz-row) {
    background: #1c2128;
}

.tjk-at-row.selected {
    background: rgba(31, 111, 235, 0.2) !important;
    border-left: 3px solid #1f6feb;
}

.tjk-at-row.kosmaz-row {
    opacity: 0.4;
    cursor: not-allowed;
    background: #3d1f1f;
    pointer-events: none;
}

.tjk-at-row.ekuri-row {
    border-left: 3px solid #58a6ff;
}

/* At Numarası Kutusu */
.tjk-at-num {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #238636;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

/* Rozetler */
.tjk-ekuri-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #58a6ff;
    color: #fff;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 4px;
    white-space: nowrap;
}

.tjk-kosmaz-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #da3633;
    color: #fff;
    border-radius: 12px;
    font-size: 10px;
    margin-left: 4px;
    white-space: nowrap;
}

/* Seçim Özeti Tablosu */
.tjk-selection-container {
    background: #161b22;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.tjk-selection-container h2 {
    background: #0d1117;
    color: #c9d1d9;
    padding: 12px;
    border-radius: 6px;
    margin: -20px -20px 15px -20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #30363d;
}

.tjk-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tjk-selection-title {
    font-size: 18px;
    font-weight: 600;
    color: #c9d1d9;
}

.tjk-selection-status {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tjk-status-complete {
    background: #238636;
    color: #fff;
}

.tjk-status-incomplete {
    background: #6e7681;
    color: #fff;
}

.tjk-selection-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tjk-selection-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 100%;
}

.tjk-selection-table th {
    padding: 10px;
    font-size: 12px;
    color: #8b949e;
    border-bottom: 1px solid #30363d;
    background: #0d1117;
}

.tjk-selection-table td {
    padding: 10px;
    border-bottom: 1px solid #30363d;
    font-size: 13px;
}

/* SEÇİMLER TABLOSU SÜTUN GENİŞLİKLERİ VE HİZALAMA */
.tjk-selection-table th:nth-child(1),
.tjk-selection-table td:nth-child(1) {
    width: 50px;
    text-align: center;
    vertical-align: middle;
}

.tjk-selection-table th:nth-child(2),
.tjk-selection-table td:nth-child(2) {
    width: auto;
    text-align: left;
    vertical-align: middle;
}

.tjk-selection-table th:nth-child(3),
.tjk-selection-table td:nth-child(3) {
    width: 120px;
    text-align: left;
    vertical-align: middle;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.tjk-selection-table th:nth-child(4),
.tjk-selection-table td:nth-child(4) {
    width: 80px;
    text-align: right;
    vertical-align: middle;
    padding-right: 12px !important;
}

.tjk-selection-ayak {
    font-weight: 600;
    color: #58a6ff;
    text-align: center;
}

.tjk-selection-at-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: #238636;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    margin-right: 8px;
}

.tjk-selection-empty {
    color: #6e7681;
    font-style: italic;
    text-align: center;
}

/* Butonlar */
.tjk-selection-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tjk-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.tjk-btn-danger {
    background: #da3633;
    color: #fff;
}

.tjk-btn-danger:hover {
    background: #bb2d2a;
}

.tjk-btn-success {
    background: #238636;
    color: #fff;
}

.tjk-btn-success:hover {
    background: #2ea043;
}

/* İkramiye Sonuçları */
.tjk-prize-container {
    background: #161b22;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.tjk-prize-title {
    font-size: 18px;
    font-weight: 600;
    color: #c9d1d9;
    margin-bottom: 15px;
}

.tjk-prize-info {
    padding: 15px;
    background: #0d1117;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    color: #8b949e;
    font-size: 13px;
}

.tjk-prize-info div {
    margin: 5px 0;
}

.tjk-prize-single {
    padding: 15px;
    background: #0d1117;
    border-radius: 6px;
}

.tjk-prize-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #30363d;
}

.tjk-prize-row:last-child {
    border-bottom: none;
}

.tjk-prize-label {
    color: #8b949e;
    font-size: 14px;
}

.tjk-prize-value {
    color: #238636;
    font-size: 16px;
    font-weight: 700;
}

/* Hata ve Boş Durumlar */
.tjk-error {
    padding: 20px;
    background: #3d1f1f;
    color: #da3633;
    border-radius: 6px;
    text-align: center;
}

.tjk-empty {
    padding: 40px;
    text-align: center;
    color: #6e7681;
    font-style: italic;
}

/* Bilgi Kutuları */
.tjk-footer-info {
    padding: 12px;
    background: #1c2128;
    border-left: 3px solid #f59e0b;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #8b949e;
}

/* =========================================
   MOBİL UYUMLULUK VE SÜTUN GENİŞLİKLERİ
   ========================================= */
@media (max-width: 768px) {
    .tjk-agf-api-wrapper {
        padding: 5px 7px;
    }
    
    /* Tablo için wrapper - yatay kaydırma */
    .tjk-at-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tjk-at-table {
        font-size: 11px;
        min-width: 100%;
        table-layout: fixed;
    }
    
    .tjk-at-table th,
    .tjk-at-table td {
        padding: 6px 3px;
        font-size: 11px;
        line-height: 1.3;
        vertical-align: top;
    }

    /* MOBİL SÜTUN GENİŞLİKLERİ */
    .tjk-at-table .col-no { 
        width: 40px;
        text-align: center;
        vertical-align: top;
        padding-top: 8px !important;
        line-height: 1.3;
    }

    .tjk-at-table .col-isim { 
        width: 110px;
        max-width: 110px;
        word-break: break-word;
        white-space: normal;
        overflow: hidden;
        font-size: 10px;
        padding-left: 4px !important;
        padding-right: 4px !important;
        vertical-align: top;
        padding-top: 8px !important;
        line-height: 1.3;
    }
    
    .tjk-at-table .col-jokey { 
        width: 75px;
        max-width: 75px;
        font-size: 10px;
        word-break: break-word;
        white-space: normal;
        overflow: hidden;
        padding-left: 3px !important;
        padding-right: 3px !important;
        vertical-align: top;
        padding-top: 8px !important;
        line-height: 1.3;
    }

    .tjk-at-table .col-agf { 
        width: 60px;
        max-width: 60px;
        padding-right: 6px !important;
        font-size: 11px;
        white-space: nowrap;
        text-align: right;
        vertical-align: top;
        padding-top: 8px !important;
        line-height: 1.3;
    }
    
    .tjk-bahis-tabs,
    .tjk-ayak-nav {
        gap: 5px;
        justify-content: center;
    }
    
    .tjk-bahis-tab, .tjk-ayak-btn {
        padding: 8px 10px;
        font-size: 12px;
        flex-grow: 1;
        text-align: center;
    }
    
    .tjk-selection-buttons {
        flex-direction: column;
    }
    
    /* Seçimler container mobil optimizasyon */
    .tjk-selection-container {
        padding: 10px;
    }
    
    .tjk-selection-container h2 {
        margin: -10px -10px 10px -10px;
        padding: 10px;
        font-size: 14px;
    }
    
    .tjk-selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .tjk-selection-title {
        font-size: 15px;
    }
    
    .tjk-btn {
        width: 100%;
        margin-bottom: 5px;
    }

    .tjk-at-num {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 11px;
        display: inline-block;
        vertical-align: top;
    }
    
    /* Mobilde badge'leri küçült */
    .tjk-ekuri-badge,
    .tjk-kosmaz-badge {
        font-size: 8px;
        padding: 1px 3px;
        margin-left: 2px;
        display: inline-block;
        vertical-align: middle;
    }
    
    /* At ismi span'ını inline-block yap */
    .tjk-at-table .col-isim span {
        display: inline-block;
        line-height: 1.3;
    }
    
    /* MOBİL SEÇİMLER TABLOSU - ANDROID OPTİMİZASYONU */
    .tjk-selection-table {
        font-size: 11px;
    }
    
    .tjk-selection-table th {
        padding: 6px 3px;
        line-height: 1.2;
        vertical-align: middle;
        font-size: 10px;
        font-weight: 600;
    }
    
    .tjk-selection-table td {
        padding: 6px 3px;
        line-height: 1.2;
        vertical-align: top;
    }
    
    .tjk-selection-table th:nth-child(1),
    .tjk-selection-table td:nth-child(1) {
        width: 40px;
        text-align: center;
        padding-top: 8px !important;
    }
    
    .tjk-selection-table th:nth-child(2),
    .tjk-selection-table td:nth-child(2) {
        width: auto;
        min-width: 80px;
        font-size: 10px;
        padding-left: 4px !important;
        padding-right: 4px !important;
        padding-top: 8px !important;
    }
    
    .tjk-selection-table th:nth-child(3),
    .tjk-selection-table td:nth-child(3) {
        width: 75px;
        max-width: 75px;
        font-size: 9px;
        padding-left: 3px !important;
        padding-right: 3px !important;
        word-break: break-word;
        white-space: normal;
        padding-top: 8px !important;
    }
    
    .tjk-selection-table th:nth-child(4),
    .tjk-selection-table td:nth-child(4) {
        width: 60px;
        max-width: 60px;
        font-size: 10px;
        padding-left: 3px !important;
        padding-right: 5px !important;
        white-space: nowrap;
        padding-top: 8px !important;
    }
    
    /* Mobilde at numarası badge'ini küçült */
    .tjk-selection-at-num {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        margin-right: 4px;
    }
}/* ============================================================================
   TJK AGF API VIEWER - DEVİR UYARISI STİLLERİ
   ============================================================================ */

/* İkramiye Satırları - Yeni Düzenli Görünüm */
.tjk-prize-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #0d1117;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid #30363d;
    transition: all 0.2s;
}

.tjk-prize-row:hover {
    background: #161b22;
    border-color: #58a6ff;
}

.tjk-prize-label {
    color: #8b949e;
    font-size: 15px;
    font-weight: 500;
}

.tjk-prize-value {
    color: #238636;
    font-size: 18px;
    font-weight: 700;
}

/* Devir Olan Satır - Kırmızı Vurgu */
.tjk-prize-row.tjk-devir {
    background: rgba(218, 54, 51, 0.1);
    border-color: #da3633;
    border-left: 4px solid #da3633;
}

.tjk-prize-row.tjk-devir .tjk-prize-value {
    color: #ff6b6b;
}

/* Devir Rozeti - Küçük */
.tjk-devir-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #da3633;
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

/* Devir Rozeti - BÜYÜK (Tutar yerine gösterilen) */
.tjk-devir-badge-big {
    display: inline-block;
    padding: 10px 24px;
    background: #da3633;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(218, 54, 51, 0.5);
}

/* TEVZI Bilgisi (İkramiye altında küçük bilgi) */
.tjk-tevzi-info {
    padding: 6px 15px;
    text-align: right;
    font-size: 11px;
    color: #8b949e;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 0 0 6px 6px;
    margin-top: -6px;
    margin-bottom: 8px;
}

.tjk-tevzi-info small {
    color: #58a6ff;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Devir Uyarı Container */
.tjk-devir-uyari-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #30363d;
}

/* Devir Uyarı Kutusu */
.tjk-devir-uyari {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, rgba(218, 54, 51, 0.1) 0%, rgba(218, 54, 51, 0.05) 100%);
    border: 2px solid #da3633;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Devir İkon */
.tjk-devir-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

/* Devir İçerik */
.tjk-devir-content {
    flex: 1;
}

.tjk-devir-content h4 {
    margin: 0 0 12px 0;
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tjk-devir-content p {
    margin: 8px 0;
    color: #c9d1d9;
    font-size: 14px;
    line-height: 1.6;
}

.tjk-devir-content p strong {
    color: #ff6b6b;
    font-weight: 700;
}

/* Devir Mesajı - Özel Vurgu */
.tjk-devir-mesaj {
    margin-top: 15px !important;
    padding: 12px 15px;
    background: rgba(218, 54, 51, 0.15);
    border-left: 3px solid #da3633;
    border-radius: 4px;
    font-size: 13px !important;
    line-height: 1.8 !important;
}

.tjk-devir-mesaj br {
    margin: 4px 0;
}

/* Havuz Bilgileri Kutusu (Opsiyonel - Eğer havuz bilgilerini göstermek isterseniz) */
.tjk-havuz-info-box {
    background: #1c2128;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid #58a6ff;
}

.tjk-havuz-info-box h4 {
    margin: 0 0 12px 0;
    color: #58a6ff;
    font-size: 14px;
    font-weight: 600;
}

.tjk-havuz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tjk-havuz-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #0d1117;
    border-radius: 4px;
    font-size: 13px;
}

.tjk-havuz-item .label {
    color: #8b949e;
}

.tjk-havuz-item .value {
    color: #58a6ff;
    font-weight: 600;
}

/* ============================================================================
   MOBİL UYUMLULUK
   ============================================================================ */

@media (max-width: 768px) {
    .tjk-prize-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tjk-prize-value {
        font-size: 16px;
    }
    
    .tjk-devir-badge {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .tjk-devir-badge-big {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .tjk-tevzi-info {
        font-size: 10px;
        padding: 4px 12px;
        text-align: center;
    }
    
    .tjk-devir-uyari {
        flex-direction: column;
        padding: 15px;
    }
    
    .tjk-devir-icon {
        font-size: 30px;
        text-align: center;
    }
    
    .tjk-devir-content h4 {
        font-size: 14px;
    }
    
    .tjk-devir-content p {
        font-size: 13px;
    }
    
    .tjk-devir-mesaj {
        font-size: 12px !important;
        padding: 10px 12px;
    }
    
    .tjk-havuz-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   EXTRA KÜÇÜK EKRANLAR (iPhone SE, küçük Android telefonlar)
   ============================================================================ */
@media (max-width: 400px) {
    .tjk-agf-api-wrapper {
        padding: 3px 5px;
    }
    
    .tjk-at-table .col-no { 
        width: 35px;
        padding-top: 6px !important;
    }

    .tjk-at-table .col-isim { 
        width: 100px;
        max-width: 100px;
        font-size: 9px;
        padding-top: 6px !important;
    }
    
    .tjk-at-table .col-jokey { 
        width: 70px;
        max-width: 70px;
        font-size: 9px;
        padding-top: 6px !important;
    }

    .tjk-at-table .col-agf { 
        width: 55px;
        max-width: 55px;
        font-size: 10px;
        padding-top: 6px !important;
    }
    
    .tjk-at-table th,
    .tjk-at-table td {
        padding: 6px 2px;
        font-size: 10px;
    }
    
    /* EXTRA KÜÇÜK EKRANLAR - SEÇİMLER TABLOSU */
    .tjk-selection-container {
        padding: 8px;
    }
    
    .tjk-selection-container h2 {
        margin: -8px -8px 8px -8px;
        padding: 8px;
        font-size: 13px;
    }
    
    .tjk-selection-table th,
    .tjk-selection-table td {
        padding: 5px 2px;
        font-size: 10px;
    }
    
    .tjk-selection-table th:nth-child(1),
    .tjk-selection-table td:nth-child(1) {
        width: 35px;
        padding-top: 6px !important;
    }
    
    .tjk-selection-table th:nth-child(2),
    .tjk-selection-table td:nth-child(2) {
        min-width: 70px;
        font-size: 9px;
        padding-top: 6px !important;
    }
    
    .tjk-selection-table th:nth-child(3),
    .tjk-selection-table td:nth-child(3) {
        width: 65px;
        max-width: 65px;
        font-size: 8px;
        padding-top: 6px !important;
    }
    
    .tjk-selection-table th:nth-child(4),
    .tjk-selection-table td:nth-child(4) {
        width: 50px;
        max-width: 50px;
        font-size: 9px;
        padding-top: 6px !important;
    }
    
    .tjk-selection-at-num {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 9px;
        margin-right: 3px;
    }
}

/* ============================================================================
   PRINT STİLLERİ (Yazdırma için)
   ============================================================================ */

@media print {
    .tjk-devir-uyari {
        border: 2px solid #000;
        background: #fff;
        page-break-inside: avoid;
    }
    
    .tjk-devir-badge {
        background: #000;
        color: #fff;
    }
}

/* ============================================================================
   DARK MODE (Opsiyonel - Tema dark mode destekliyorsa)
   ============================================================================ */

@media (prefers-color-scheme: light) {
    /* Eğer light mode tercih edilirse, renkleri ayarla */
    .tjk-prize-row {
        background: #ffffff;
        border-color: #e1e4e8;
    }
    
    .tjk-prize-label {
        color: #586069;
    }
    
    .tjk-devir-uyari {
        background: linear-gradient(135deg, rgba(218, 54, 51, 0.08) 0%, rgba(218, 54, 51, 0.03) 100%);
    }
}