/* Details Page Custom Styles */

/* Offline server red styling */
.text-danger {
    color: #ff073a !important;
}

/* Players List Widget Style */
.players-container {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
    padding: 15px !important;
}

.players-container::-webkit-scrollbar {
    width: 8px;
}

.players-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.players-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #9d00ff, #ff00e6);
    border-radius: 4px;
}

.players-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff00e6, #9d00ff);
}

.player-widget-item {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .player-widget-item {
        padding: 8px 12px !important;
        font-size: 12px;
    }
    
    .player-widget-item i {
        font-size: 12px !important;
    }
    
    .player-widget-item > div:last-child {
        gap: 10px !important;
    }
}

.stat-value-large.text-danger {
    color: #ff073a !important;
}

.stat-trend.negative {
    color: #ff073a;
}

.stat-trend.negative i {
    color: #ff073a;
}
