/* ===========================================
   ESTILOS BÁSICOS PARA PÁGINA DE JUGADORES
   =========================================== */

/* Estilos básicos para jugadores */

#contenedor-jugadores {
    padding: 20px 0;
}

.jugador-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}

.jugador-img {
    height: 200px;
    width: 100%;
    background-color: #f5f5f5;
}

.jugador-card .card-body {
    padding: 15px;
}

.jugador-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.jugador-card .card-text.text-muted {
    color: #009520 !important;
    font-weight: 500;
}

.jugador-card .card-text {
    color: #666;
    margin-bottom: 15px;
}

.btn-estadisticas {
    background-color: #009520 !important;
    border: none !important;
    color: white !important;
    padding: 8px 16px;
    border-radius: 3px;
}

.btn-estadisticas:hover {
    background-color: #007a1a !important;
    color: white !important;
}

.staff-card {
    background: #f8f8f8;
}

.staff-card .card-title {
    color: #009520;
}

#cargando {
    padding: 40px 0;
    text-align: center;
}

#cargando p {
    color: #009520;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #eee;
    border-radius: 50%;
    border-top-color: #009520;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

h3 {
    color: #009520;
    margin-bottom: 20px;
    border-bottom: 2px solid #009520;
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .jugador-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .jugador-card .card-body {
        padding: 10px;
    }
    
    .btn-estadisticas {
        width: 100%;
        margin-top: 10px;
    }
} 