        .char-name {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .clan-crests img {
            vertical-align: middle;
            margin-right: 5px;
        }
        .rating td, .rating th {
            padding: 12px 15px;
            text-align: center;
        }
        .rating tbody tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .rating tbody tr:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
		.clan-crests img {
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 2px;
}
.char-name {
    display: flex;
    align-items: center;
}


       /* Genel stiller */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #fff;
        }
        
        .char-name {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Rating tablosu */
        .rating {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(20, 20, 30, 0.8);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-top: 20px;
        }
        
        .rating th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 15px;
            text-align: center;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
        }
        
        .rating td {
            padding: 16px 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
        }
        
        .rating tbody tr {
            transition: all 0.3s ease;
        }
        
        .rating tbody tr:nth-child(even) {
            background-color: rgba(30, 30, 40, 0.4);
        }
        
        .rating tbody tr:hover {
            background-color: rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .rating tbody tr:last-child td {
            border-bottom: none;
        }
        
        /* Toplam ödeme kartı */
        .total-amount {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .total-amount .label {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .status-odendi {
            color: #10b981;
            font-weight: bold;
            background: rgba(16, 185, 129, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .status-beklemede {
            color: #f59e0b;
            font-weight: bold;
            background: rgba(245, 158, 11, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .status-basarisiz {
            color: #ef4444;
            font-weight: bold;
            background: rgba(239, 68, 68, 0.15);
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .amount-positive {
            color: #10b981;
            font-weight: bold;
            font-size: 16px;
        }
        
        /* Menü stilleri */
        .stats-menu {
            display: flex;
            list-style: none;
            margin-bottom: 25px;
            border-bottom: 2px solid rgba(102, 126, 234, 0.3);
            padding: 0;
            justify-content: center;
        }
        
        .stats-menu li {
            margin: 0 5px;
        }
        
        .stats-menu li a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: #aaa;
            text-decoration: none;
            border-radius: 8px 8px 0 0;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .stats-menu li.active a {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transform: translateY(-2px);
        }
        
        .stats-menu li a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: white;
            transform: translateY(-2px);
        }
        
        .stats-menu li a svg {
            margin-right: 10px;
            width: 20px;
            height: 20px;
        }
        
        /* Sayfalama stilleri */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            gap: 8px;
        }
        
        .pagination a, .pagination span {
            display: inline-block;
            padding: 10px 18px;
            background: rgba(30, 30, 40, 0.8);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            font-weight: 500;
            min-width: 45px;
            text-align: center;
        }
        
        .pagination a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .pagination .active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: bold;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .pagination .disabled {
            background: rgba(30, 30, 40, 0.3);
            color: #666;
            cursor: not-allowed;
            opacity: 0.5;
        }
        
        .pagination-info {
            text-align: center;
            margin-top: 15px;
            color: #aaa;
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Sidebar stilleri */
        .auth_logo img {
            width: 100%;
            max-width: 160px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
        }
        
        .auth_block_top {
            padding: 25px 30px;
            text-align: center;
        }
        
        .auth_header_top {
            margin-top: 20px;
            margin-bottom: 0;
            padding: 15px 20px;
            background: rgba(20, 20, 30, 0.8);
            border-radius: 10px;
            margin: 20px 15px;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }
        
        .auth_top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .auth_bottom_text {
            text-align: center;
        }
        
        .auth_bottom_text small {
            font-size: 11px;
            color: #aaa;
            display: block;
            margin-top: 5px;
        }
        
        .auth_header_title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        
        .auth_header_title svg {
            color: #667eea;
            width: 20px;
            height: 20px;
        }
        
        .auth_header_title p {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }
        
        /* Sidebar menü */
        .sidebar-menu {
            padding: 0 15px;
        }
        
        .sidebar-menu li a {
            display: flex;
            align-items: center;
            padding: 14px 15px;
            color: #aaa;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            margin-bottom: 5px;
        }
        
        .sidebar-menu li a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: white;
            transform: translateX(5px);
        }
        
        .sidebar-menu li.active a {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .sidebar-menu li a svg {
            margin-right: 12px;
            width: 20px;
            height: 20px;
        }
        
        .sidebar-menu li a span {
            font-weight: 500;
        }
        
        /* Ana içerik */
        .main-content {
            padding: 20px;
        }
        
        .auth-content-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .stats_table {
            overflow-x: auto;
            border-radius: 12px;
        }
        
        /* Dropdown sayfa seçme */
        .page-select-form {
            text-align: center;
            margin-top: 20px;
        }
        
        .page-select-form label {
            color: #aaa;
            margin-right: 10px;
            font-size: 14px;
        }
        
        .page-select-form select {
            padding: 8px 15px;
            border-radius: 8px;
            background: rgba(30, 30, 40, 0.8);
            color: white;
            border: 1px solid rgba(102, 126, 234, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .page-select-form select:hover {
            border-color: #667eea;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
        }
        
        /* Footer */
        .stats_generated_date {
            text-align: center;
            margin-top: 40px;
            color: #666;
            font-size: 12px;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .rating th, .rating td {
                padding: 12px 8px;
                font-size: 13px;
            }
            
            .stats-menu {
                flex-wrap: wrap;
            }
            
            .stats-menu li {
                margin: 5px;
            }
            
            .stats-menu li a {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .total-amount {
                font-size: 18px;
                padding: 15px;
            }
            
            .pagination a, .pagination span {
                padding: 8px 12px;
                min-width: 40px;
                font-size: 14px;
            }
        }
        
        /* Animasyon */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .auth-content-main {
            animation: fadeIn 0.5s ease-out;
        }