/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand img {
    height: 40px;
}

/* Estilos para el home */
.hero-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Slider de noticias */
.news-slider {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.news-slide {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.news-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
}

.news-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Tabla de posiciones */
.standings-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.standings-table .table {
    margin-bottom: 0;
}

.standings-table .table thead {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.standings-table .table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.team-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Calendario */
.calendar-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.match-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

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

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

.team {
    display: flex;
    align-items: center;
    flex: 1;
}

.vs {
    margin: 0 20px;
    font-weight: bold;
    color: #ff6b35;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
}

.footer .social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .match-teams {
        flex-direction: column;
        text-align: center;
    }
    
    .vs {
        margin: 10px 0;
    }
    
    .standings-table {
        font-size: 0.9rem;
    }
    
    .team-logo {
        width: 25px;
        height: 25px;
    }

    /* Eliminar reglas CSS que podrían interferir con los modales de Bootstrap */
    .tab-content > .tab-pane {
        display: block; /* Bootstrap maneja esto con JS */
        height: auto; /* Bootstrap maneja esto con JS */
        overflow: visible; /* Bootstrap maneja esto con JS */
        visibility: visible; /* Bootstrap maneja esto con JS */
    }

    .tab-content > .tab-pane.active {
        height: auto;
        overflow: visible;
        visibility: visible;
    }
}

/* Estilos para el login */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 30px;
    text-align: center;
}

.login-body {
    padding: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Estilos para dashboards */
.dashboard-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-bottom: none;
    font-weight: bold;
}

/* Tabs */
.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link:hover {
    color: #ff6b35;
}

/* Formularios */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Botones secundarios */
.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utilidades */
.text-orange {
    color: #ff6b35 !important;
}

.bg-orange {
    background-color: #ff6b35 !important;
}

.border-orange {
    border-color: #ff6b35 !important;
}



