.player-details-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}


.player-details-wrapper .player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.back-button, .player-profile-link {
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.2s;
}

.player-details-wrapper .player-header .header-left .back-button {
    border: none;
    background: #ccc;
    cursor: pointer;
}

.player-details-wrapper .player-header .header-left .back-button:hover { 
    background: #aaa; 
}

.player-details-wrapper .player-header .header-right .player-profile-link {
    background: #0c6fc1;
    color: #fff;
    text-decoration: none;
}

.player-details-wrapper .player-header .header-right .player-profile-link:hover { 
    background: #094a7c;
}


.player-details-wrapper .player-header .header-center {
    display: flex;
}

.player-details-wrapper .player-header .header-center h2 {
    margin: 0;
    font-size: 28px;
    text-align: center;
    flex: 1;
    color: #0c0c2d;
}

.player-details-wrapper .player-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.player-details-wrapper .player-info .info-details p {
    margin: 6px 0;
    font-size: 16px;
}

.player-details-wrapper .player-info .info-details .ban-duration.expired { 
    color: #309100; 
    font-weight: bold; 
}

