/* Fichero principal de estilos para la aplicación Club */
/* ===== ESTILOS ESPECÍFICOS DEL DASHBOARD CLUB ===== */
.club-dashboard-body {
    background: linear-gradient(rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.9)), 
                url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.club-navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
}

/* Sidebar */
.sidebar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-right: 1px solid #e9ecef;
    min-height: calc(100vh - 76px);
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
    color: #495057;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 3px 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar .nav-link:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    font-weight: 600;
}

/* Contenido principal */
.main-content {
    padding: 25px;
    min-height: calc(100vh - 76px);
}

/* Cards de estadísticas */
.club-stats-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid #1e3c72;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.club-stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stats-content {
    flex: 1;
    text-align: left;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 5px;
}

.stats-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cards de contenido */
.club-actions-card,
.club-videos-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.club-actions-card .card-title,
.club-videos-card .card-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 18px 25px;
    margin: 0;
    border: none;
    font-weight: 600;
}

/* Botones */
.club-btn-primary {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.club-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.4);
    color: white;
}

.club-btn-outline {
    background: transparent;
    border: 2px solid #1e3c72;
    color: #1e3c72;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.club-btn-outline:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-2px);
}

/* GRID DE VIDEOS - 4 por línea */
.club-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 15px 0;
}

/* Responsive grid */
@media (max-width: 1200px) {
    .club-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .club-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .club-video-grid {
        grid-template-columns: 1fr;
    }
}

/* Tarjetas de video */
.club-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.club-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Specific styles for lista_videos.html thumbnails */
.club-list-video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #000; /* Placeholder background */
}

.club-list-video-thumbnail-wrapper .club-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenedor de video */
.club-video-container {
    position: relative;
    width: 100%;
    height: 180px; /* Restore original fixed height for home.html */
    background: #000;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.club-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Removed display: block; if it wasn't originally present */
}

.club-video-card:hover .club-video-thumbnail {
    transform: scale(1.08);
}

/* BOTÓN DE PLAY CENTRADO */
.club-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 60, 114, 0.95);
    border: none;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.95;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.club-play-button:hover {
    background: rgba(30, 60, 114, 1);
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

/* Información del video */
.club-video-info {
    padding: 18px;
    background: white;
}

.club-video-info h6 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-subaspecto {
    color: #6c757d;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
    font-style: italic;
}

.video-meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    font-size: 0.8rem;
    color: #6c757d;
}

/* Badges */
.club-badge {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* RESPONSIVE - Sidebar oculto en móviles */
@media (max-width: 767.98px) {
    .sidebar {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 76px);
        z-index: 1000;
        transition: left 0.3s ease;
    }
    
    .sidebar.mobile-open {
        left: 0;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .club-stats-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .stats-content {
        text-align: center;
    }
    
    .stats-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stats-number {
        font-size: 1.6rem;
    }
}

/* Overlay para móviles */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-overlay.show {
    display: block;
}

/* Estilos específicos para sidebar_embedded.html */
.club-sidebar-nav .nav-item {
    margin-bottom: 0; /* Reduce space between nav items */
}

.club-sidebar-nav .nav-link {
    padding: 8px 20px; /* Adjust padding to reduce height */
}

.club-sidebar-heading {
    padding: 0 20px; /* Match horizontal padding of nav links */
    margin-top: 15px; /* Adjust top margin */
    margin-bottom: 5px; /* Adjust bottom margin */
    font-size: 0.9rem; /* Smaller font size */
    color: #888; /* Slightly lighter color */
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Estilos para splash_screen.html --- */
.splash-screen-body-html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
}
.club-splash-screen {
    background: linear-gradient(rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.9)),
                url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: opacity 1s ease-in-out;
}
.club-splash-screen.fade-out {
    opacity: 0;
}
.club-emblem-img { /* Renamed from .club-emblem for clarity */
    max-width: 720px; /* Max width as requested */
    max-height: 720px; /* Max height as requested */
    width: 80vmin; /* Responsive width based on viewport smaller dimension */
    height: 80vmin; /* Responsive height based on viewport smaller dimension */
    object-fit: contain; /* Ensure the image fits within boundaries without cropping */
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border-radius: 15px; /* Optional: adds a nice nice touch */
}
.club-splash-message { /* Renamed from .message for clarity */
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* --- Estilos para completar_registro.html --- */
.club-registro-body {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
}
.club-registro-container {
    max-width: 700px;
}
.club-registro-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.club-registro-card-header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
    border-radius: 0 !important;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.club-registro-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: float 20s linear infinite;
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-20px, -20px) rotate(360deg); }
}
.club-registro-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.club-registro-btn-primary {
    background: linear-gradient(45deg, #1a237e, #283593);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}
.club-registro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
    background: linear-gradient(45deg, #283593, #303f9f);
}
/* No actualizamos el .form-control directamente, lo haremos con add_class en el template */
/* .club-registro-form-control { ... } */
.club-registro-form-control:focus {
    border-color: #283593;
    box-shadow: 0 0 0 0.3rem rgba(40, 53, 147, 0.25);
    transform: translateY(-1px);
}
.club-registro-form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
}
.club-registro-password-strength {
    height: 4px;
    background: #ecf0f1;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}
.club-registro-password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.club-registro-security-tips {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}
.club-registro-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.club-registro-step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #bdc3c7;
    z-index: 1;
}
.club-registro-step {
    text-align: center;
    position: relative;
    z-index: 2;
}
.club-registro-step-number {
    width: 40px;
    height: 40px;
    background: #bdc3c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
}
.club-registro-step.active .club-registro-step-number {
    background: linear-gradient(45deg, #1a237e, #283593);
}
.club-registro-step-text {
    font-size: 0.9rem;
    color: #7f8c8d;
}
.club-registro-step.active .club-registro-step-text {
    color: #2c3e50;
    font-weight: 600;
}

/* --- Estilos para crear_entrenador.html --- */
.club-crear-entrenador-page {
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}
.club-crear-entrenador-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.club-crear-entrenador-form-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}
.club-crear-entrenador-section-title {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* --- Estilos para crear_futbolista.html --- */
.club-crear-futbolista-page {
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}
.club-crear-futbolista-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.club-crear-futbolista-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.club-crear-futbolista-section-title {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* --- Estilos para detalle_entrenador.html --- */
.club-detalle-entrenador-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.club-detalle-entrenador-card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Similar to navbar */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.club-detalle-entrenador-card-title {
    color: #1e3c72;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* --- Estilos para detalle_futbolista.html --- */
.club-detalle-futbolista-profile-header { background-color: #f8f9fa; padding: 2rem; border-radius: .5rem; margin-bottom: 2rem; }
.club-detalle-futbolista-profile-avatar { width: 120px; height: 120px; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 0 15px rgba(0,0,0,0.1); }
.club-detalle-futbolista-nav-tabs .nav-link { color: #495057; }
.club-detalle-futbolista-nav-tabs .nav-link.active { color: #0d6efd; border-color: #dee2e6 #dee2e6 #fff; }
.club-detalle-futbolista-video-item { position: relative; border: 1px solid #e9ecef; border-radius: 8px; transition: all 0.3s ease; background-color: #fff; padding: 0; overflow: hidden; }
.club-detalle-futbolista-video-item .form-check-label { display: block; cursor: pointer; }
.club-detalle-futbolista-video-item-thumbnail { width: 100%; height: auto; display: block; }
.club-detalle-futbolista-video-checkbox { position: absolute; top: 5px; left: 5px; z-index: 10; width: 1.5em; height: 1.5em; }
.club-detalle-futbolista-video-item-text { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: white; padding: 4px; font-size: 0.75em; text-align: center; }
.club-detalle-futbolista-video-item:has(.club-detalle-futbolista-video-checkbox:checked) { border-color: #0d6efd; box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25); }
.club-detalle-futbolista-aspecto-section { border: 2px solid #e9ecef; border-radius: 10px; padding: 1rem; margin-bottom: 1rem; }
.club-detalle-futbolista-subaspecto-card { background: #fdfdfd; border-radius: 8px; padding: 1rem; margin-bottom: 1rem; border-left: 4px solid #0d6efd; }
.club-detalle-futbolista-etiqueta-counter { background: #0d6efd; color: white; border-radius: 50%; width: 25px; height: 25px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; margin-left: 0.5rem; }
#clubDetalleFutbolistaVideoPlayerModal .modal-body { background: #000; }
.club-detalle-futbolista-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-detalle-futbolista-card-body {
    padding: 1.5rem;
}
.club-detalle-futbolista-card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Estilos para editar_etiqueta.html --- */
.club-editar-etiqueta-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.club-editar-etiqueta-card-header {
    background: #ffc107; /* Bootstrap warning color */
    color: #212529; /* Dark text for warning background */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Estilos para entrenador_creado_exitoso.html --- */
.club-entrenador-creado-body {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.club-entrenador-creado-success-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
}
.club-entrenador-creado-success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

/* --- Estilos para etiquetar_video.html --- */
.club-etiquetar-video-body {
    background-color: #f8f9fa; /* Assuming bg-light from Bootstrap */
}
.club-etiquetar-video-ytp-large-play-button { /* Specific targeting for YouTube player */
    display: none !important;
}
.club-etiquetar-video-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-etiquetar-video-card-header-primary {
    background: #0d6efd; /* Bootstrap primary color */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-etiquetar-video-card-header-success {
    background: #198754; /* Bootstrap success color */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-etiquetar-video-card-header-info {
    background: #0dcaf0; /* Bootstrap info color */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-etiquetar-video-input-group-text {
    background-color: #e9ecef;
    color: #495057;
    border: 1px solid #ced4da;
}
.club-etiquetar-video-alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* --- Estilos para futbolista_creado_exitoso.html --- */
.club-futbolista-creado-exitoso-page {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%); /* Greenish gradient for success */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.club-futbolista-creado-exitoso-form-container { /* Renamed from .form-container */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
}
.club-futbolista-creado-exitoso-form-header { /* Renamed from .form-header */
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.club-futbolista-creado-exitoso-success-message .lead {
    font-size: 1.25rem;
    color: #495057;
}
.club-futbolista-creado-exitoso-success-message .fas.fa-envelope {
    color: #007bff; /* Bootstrap primary blue */
}
.club-futbolista-creado-exitoso-club-info { /* Renamed from .club-info */
    color: #6c757d; /* Muted text */
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.club-futbolista-creado-exitoso-club-info strong {
    color: #343a40; /* Darker text for emphasis */
}

/* --- Estilos para futbolistas_asociados.html --- */
.club-futbolistas-asociados-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-futbolistas-asociados-card-body {
    padding: 1.5rem;
}

/* --- Estilos para futbolistas_pendientes.html --- */
.club-futbolistas-pendientes-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-futbolistas-pendientes-card-body {
    padding: 1.5rem;
}

/* --- Estilos para gestionar_posiciones.html --- */
.club-gestionar-posiciones-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

/* --- Estilos para lista_futbolistas.html --- */
.club-lista-futbolistas-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-lista-futbolistas-card-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- Estilos para lista_videos.html --- */
.club-video-footer {
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,.125);
    border-bottom-left-radius: calc(1rem - 1px);
    border-bottom-right-radius: calc(1rem - 1px);
}
.club-video-footer .btn {
    width: 100%;
}

/* --- Estilos para listar_entrenadores.html --- */
.club-lista-entrenadores-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 44px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-lista-entrenadores-card-body {
    padding: 1.5rem;
}

/* --- Estilos para login.html --- */
.club-login-page {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Deep blue gradient */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.club-login-container {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    color: #333;
    max-width: 500px;
}
.club-login-header {
    background: linear-gradient(45deg, #007bff, #0056b3); /* Primary blue gradient */
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
    margin: -3rem -3rem 2rem -3rem; /* Adjust to sit well within the card */
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

/* --- Estilos para perfil.html --- */
.club-perfil-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-perfil-card-header {
    background: #343a40; /* Dark background similar to Bootstrap's dark theme */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-perfil-card-body {
    padding: 1.5rem;
}
.club-perfil-card-footer {
    background: #f8f9fa; /* Light background */
    border-top: 1px solid #e9ecef;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0.75rem 1.5rem;
    color: #6c757d;
}

/* --- Estilos para propuestas_clasificacion.html --- */
.club-propuestas-clasificacion-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-propuestas-clasificacion-card-body {
    padding: 1.5rem;
}

/* --- Estilos para seleccionar_futbolista.html --- */
.club-seleccionar-futbolista-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-seleccionar-futbolista-card-header-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Primary blue */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-seleccionar-futbolista-card-header-info {
    background: #0dcaf0; /* Bootstrap info color */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.club-seleccionar-futbolista-card-title {
    margin-bottom: 0;
}

/* --- Estilos para sin_club.html --- */
.club-sin-club-container {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    color: #333;
    max-width: 600px;
}

/* --- Estilos para subir_video.html --- */
.club-subir-video-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}
.club-subir-video-card-body {
    padding: 1.5rem;
}
.club-subir-video-form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.25em;
    margin-right: 0.5em;
}
.club-subir-video-form-check-label {
    margin-bottom: 0;
}
