.player-details .desc {
    color: #777777;
    font-size: 16px;
    line-height: 26px;
    position: relative;
    font-family: 'Roboto Condensed', sans-serif;
}
.info-tabs-card {
    background: white;
    border: 1px solid #f1f3f5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.info-tabs-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0 1.5rem;
}

.custom-nav-tabs {
    border-bottom: none;
}

.custom-nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.custom-nav-tabs .nav-link:hover {
    color: #212529;
}

.custom-nav-tabs .nav-link.active {
    color: #007bff;
    background: transparent;
}

/* Garis indikator aktif di bawah tab */
.custom-nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #007bff;
    border-radius: 3px 3px 0 0;
}

.tab-content-area {
    padding: 2rem;
}

/* Style untuk List Kepengurusan */
.org-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.2s;
    border: 1px solid transparent;
}
.org-item:hover {
    background-color: #f8f9fa;
    border-color: #f1f3f5;
}
.org-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}
.org-role { font-size: 0.8rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;}
.org-name { font-weight: 700; color: #343a40; font-size: 1rem; }

/* Style untuk Timeline Prestasi */
.achievement-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
    border-left: 2px solid #e9ecef;
}
.achievement-item:last-child { border-left: transparent; }
.achievement-icon {
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #007bff;
}
.achievement-date { font-size: 0.8rem; color: #adb5bd; margin-bottom: 0.25rem; }
.achievement-title { font-weight: 700; color: #343a40; }
