/* PAC Leaderboard Styles */
.pac-leaderboard-container {
    margin: 20px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
                 "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.pac-leaderboard-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pac-leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pac-entry {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.pac-entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pac-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pac-name {
    font-size: 18px;
    font-weight: 600;
    flex: 2;
}

.pac-id {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    flex: 1;
    text-align: center;
    display: none; /* Hidden by default, can be shown via settings */
}

.pac-amount {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .pac-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pac-name, .pac-amount {
        margin-bottom: 5px;
    }
    
    .pac-amount {
        text-align: left;
    }
}

.pac-number {
    font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
    min-width: 22px;
}

.pac-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pac-number + .pac-name {
    flex: 2;
}

@media (max-width: 768px) {
    .pac-content {
        flex-wrap: wrap;
    }
    
    .pac-number {
        margin-right: 5px;
    }
    
    .pac-amount {
        width: 100%;
        margin-top: 8px;
        text-align: right;
    }
}