/**
 * Fighter Rankings System Styles
 * 
 * @package JiuJitsu_Federation
 * @since 1.0.0
 */

/* ================================
   FIGHTER PROFILE PAGE
   ================================ */

/*.fighter-profile-wrapper {*/
/*    padding: 0;*/
/*    background: #f8f9fa;*/
/*}*/

/* Fighter Header */
/*.fighter-header {*/
/*    background: linear-gradient(135deg, #1e3a5f 0%, #0d1f36 100%);*/
/*    color: #ffffff;*/
/*    padding: 60px 0;*/
/*}*/

/*.fighter-header-content {*/
/*    display: flex;*/
/*    gap: 40px;*/
/*    align-items: flex-start;*/
/*}*/

/*.fighter-photo {*/
/*    flex-shrink: 0;*/
/*}*/

/*.fighter-photo img {*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    object-fit: cover;*/
/*    border-radius: 8px;*/
/*    border: 4px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.fighter-info {*/
/*    flex: 1;*/
/*}*/

/*.fighter-name {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    margin: 0 0 10px 0;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.fighter-agency {*/
/*    font-size: 18px;*/
/*    color: #a8b5c7;*/
/*    margin: 0 0 30px 0;*/
/*}*/

/*.fighter-meta {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));*/
/*    gap: 20px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.fighter-meta-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/

/*.fighter-meta-item .label {*/
/*    font-size: 12px;*/
/*    text-transform: uppercase;*/
/*    color: #a8b5c7;*/
/*    margin-bottom: 5px;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.fighter-meta-item .value {*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    color: #ffffff;*/
/*}*/

/*.fighter-social {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*}*/

/*.fighter-social a {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: #ffffff;*/
/*    font-size: 18px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.fighter-social a:hover {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    transform: translateY(-2px);*/
/*}*/

/* Stats Section */
/*.fighter-stats {*/
/*    padding: 60px 0;*/
/*    background: #ffffff;*/
/*}*/

/*.fighter-stats h2,*/
/*.fighter-bio h2 {*/
/*    font-size: 32px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 40px;*/
/*    text-align: center;*/
/*}*/

/*.stats-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*    gap: 30px;*/
/*    margin-bottom: 60px;*/
/*}*/

/*.stat-box {*/
/*    background: #f8f9fa;*/
/*    padding: 30px;*/
/*    border-radius: 8px;*/
/*    text-align: center;*/
/*    border: 2px solid #e9ecef;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.stat-box:hover {*/
/*    border-color: #0d1f36;*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.stat-number {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    color: #0d1f36;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.stat-label {*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    color: #6c757d;*/
/*    letter-spacing: 1px;*/
/*}*/

/* Match History Table */
/*.match-history {*/
/*    margin-top: 40px;*/
/*}*/

/*.match-history h3 {*/
/*    font-size: 24px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.match-history-table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    background: #ffffff;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
/*}*/

/*.match-history-table thead {*/
/*    background: #0d1f36;*/
/*    color: #ffffff;*/
/*}*/

/*.match-history-table th {*/
/*    padding: 15px;*/
/*    text-align: left;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    font-size: 12px;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.match-history-table td {*/
/*    padding: 15px;*/
/*    border-bottom: 1px solid #e9ecef;*/
/*}*/

/*.match-history-table tbody tr:hover {*/
/*    background: #f8f9fa;*/
/*}*/

/*.match-history-table tr.win {*/
/*    border-left: 4px solid #28a745;*/
/*}*/

/*.match-history-table tr.loss {*/
/*    border-left: 4px solid #dc3545;*/
/*}*/

/*.result-cell {*/
/*    font-weight: 600;*/
/*}*/

/*.win .result-cell {*/
/*    color: #28a745;*/
/*}*/

/*.loss .result-cell {*/
/*    color: #dc3545;*/
/*}*/

/*.points-cell {*/
/*    font-weight: 700;*/
/*    color: #0d1f36;*/
/*}*/

/* Bio Section */
/*.fighter-bio {*/
/*    padding: 60px 0;*/
/*    background: #f8f9fa;*/
/*}*/

/*.bio-content {*/
/*    max-width: 800px;*/
/*    margin: 0 auto 40px;*/
/*    font-size: 16px;*/
/*    line-height: 1.8;*/
/*    color: #495057;*/
/*}*/

/*.fighter-details {*/
/*    max-width: 800px;*/
/*    margin: 0 auto;*/
/*    padding: 30px;*/
/*    background: #ffffff;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #dee2e6;*/
/*}*/

/*.fighter-details p {*/
/*    margin: 10px 0;*/
/*    font-size: 16px;*/
/*}*/

/*.fighter-details strong {*/
/*    color: #0d1f36;*/
/*    margin-right: 10px;*/
/*}*/

/* ================================
   RANKINGS PAGE
   ================================ */

/*.rankings-page-wrapper {*/
/*    background: #f8f9fa;*/
/*    padding: 0;*/
/*}*/

/* Rankings Header */
/*.rankings-header {*/
/*    background: linear-gradient(135deg, #1e3a5f 0%, #0d1f36 100%);*/
/*    color: #ffffff;*/
/*    padding: 60px 0;*/
/*    text-align: center;*/
/*}*/

/*.rankings-header h1 {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    margin: 0 0 15px 0;*/
/*}*/

/*.rankings-header p {*/
/*    font-size: 18px;*/
/*    color: #a8b5c7;*/
/*    margin: 0;*/
/*}*/

/* Filter Tabs */
/*.rankings-filters {*/
/*    background: #ffffff;*/
/*    border-bottom: 2px solid #e9ecef;*/
/*    padding: 20px 0;*/
/*    position: sticky;*/
/*    top: 0;*/
/*    z-index: 100;*/
/*}*/

/*.filter-group {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    justify-content: center;*/
/*    flex-wrap: wrap;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.filter-group:last-child {*/
/*    margin-bottom: 0;*/
/*}*/

/*.filter-tab {*/
/*    padding: 12px 24px;*/
/*    border: 2px solid #e9ecef;*/
/*    border-radius: 6px;*/
/*    text-decoration: none;*/
/*    color: #495057;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*    transition: all 0.3s ease;*/
/*    background: #ffffff;*/
/*}*/

/*.filter-tab:hover {*/
/*    border-color: #0d1f36;*/
/*    color: #0d1f36;*/
/*}*/

/*.filter-tab.active {*/
/*    background: #0d1f36;*/
/*    color: #ffffff;*/
/*    border-color: #0d1f36;*/
/*}*/

/*.secondary-filters select {*/
/*    padding: 12px 24px;*/
/*    border: 2px solid #e9ecef;*/
/*    border-radius: 6px;*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    color: #495057;*/
/*    background: #ffffff;*/
/*    cursor: pointer;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/*.secondary-filters select:focus {*/
/*    outline: none;*/
/*    border-color: #0d1f36;*/
/*}*/

/* Rankings List */
/*.rankings-list {*/
/*    padding: 60px 0;*/
/*}*/

/*.ranking-card {*/
/*    background: #ffffff;*/
/*    border-radius: 8px;*/
/*    padding: 20px;*/
/*    margin-bottom: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.ranking-card:hover {*/
/*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);*/
/*    transform: translateY(-3px);*/
/*}*/

/*.rank-number {*/
/*    font-size: 36px;*/
/*    font-weight: 700;*/
/*    color: #0d1f36;*/
/*    min-width: 60px;*/
/*    text-align: center;*/
/*}*/

/*.ranking-card .fighter-photo {*/
/*    flex-shrink: 0;*/
/*}*/

/*.ranking-card .fighter-photo img {*/
/*    width: 80px;*/
/*    height: 80px;*/
/*    object-fit: cover;*/
/*    border-radius: 50%;*/
/*    border: 3px solid #e9ecef;*/
/*}*/

/*.ranking-card .fighter-info {*/
/*    flex: 1;*/
/*}*/

/*.ranking-card .fighter-name {*/
/*    font-size: 20px;*/
/*    font-weight: 700;*/
/*    margin: 0 0 5px 0;*/
/*}*/

/*.ranking-card .fighter-name a {*/
/*    color: #0d1f36;*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.ranking-card .fighter-name a:hover {*/
/*    color: #1e3a5f;*/
/*}*/

/*.ranking-card .fighter-agency {*/
/*    font-size: 14px;*/
/*    color: #6c757d;*/
/*    margin: 0;*/
/*}*/

/*.ranking-card .fighter-stats {*/
/*    display: flex;*/
/*    gap: 30px;*/
/*}*/

/*.stat-item {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/

/*.stat-item .stat-label {*/
/*    font-size: 11px;*/
/*    text-transform: uppercase;*/
/*    color: #6c757d;*/
/*    margin-bottom: 5px;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/*.stat-item .stat-value {*/
/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    color: #0d1f36;*/
/*}*/

/*.fighter-actions {*/
/*    flex-shrink: 0;*/
/*}*/

/*.btn-view-profile {*/
/*    padding: 10px 20px;*/
/*    background: #0d1f36;*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    transition: all 0.3s ease;*/
/*    display: inline-block;*/
/*}*/

/*.btn-view-profile:hover {*/
/*    background: #1e3a5f;*/
/*    transform: translateY(-2px);*/
/*}*/

/* No Results */
/*.no-results {*/
/*    text-align: center;*/
/*    padding: 60px 20px;*/
/*    background: #ffffff;*/
/*    border-radius: 8px;*/
/*}*/

/*.no-results p {*/
/*    font-size: 18px;*/
/*    color: #6c757d;*/
/*}*/

/* Rankings Footer */
/*.rankings-footer {*/
/*    padding: 40px 0;*/
/*    text-align: center;*/
/*}*/

/*.btn-view-full {*/
/*    padding: 15px 40px;*/
/*    background: #dc3545;*/
/*    color: #ffffff;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    font-weight: 700;*/
/*    font-size: 16px;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 1px;*/
/*    transition: all 0.3s ease;*/
/*    display: inline-block;*/
/*}*/

/*.btn-view-full:hover {*/
/*    background: #c82333;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);*/
/*}*/

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/*@media (max-width: 768px) {*/
/*    .fighter-header-content {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*    }*/
    
/*    .fighter-photo img {*/
/*        width: 200px;*/
/*        height: 200px;*/
/*    }*/
    
/*    .fighter-name {*/
/*        font-size: 32px;*/
/*    }*/
    
/*    .ranking-card {*/
/*        flex-wrap: wrap;*/
/*    }*/
    
/*    .ranking-card .fighter-stats {*/
/*        width: 100%;*/
/*        justify-content: space-around;*/
/*    }*/
    
/*    .match-history-table {*/
/*        font-size: 14px;*/
/*    }*/
    
/*    .match-history-table th,*/
/*    .match-history-table td {*/
/*        padding: 10px 8px;*/
/*    }*/
/*}*/

/* ================================
   CONTAINER & LAYOUT
   ================================ */

/*.container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/
