
.tournament-filter-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.filter-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.icon-title {
    color: #f39c12;
    font-size: 1.3em;
    margin-right: 12px;
    text-shadow: 0 2px 4px rgba(243, 156, 18, 0.2);
}

.select-wrapper {
    position: relative;
}

.tournament-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 50px;
}

.tournament-select:hover {
    border-color: #bdc3c7;
    background-color: #ffffff;
}

.tournament-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background-color: #ffffff;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #7f8c8d;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tournament-select:focus + .select-arrow {
    color: #3498db;
    transform: translateY(-50%) rotate(180deg);
}

.option-icon {
    color: #3498db;
    margin-right: 8px;
}

/* Estilo para las opciones */
.tournament-select option {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    background: white;
    color: #333;
}

.tournament-select option:hover {
    background-color: #3498db !important;
    color: white !important;
}

.tournament-select option:checked {
    background-color: #f1f9fe;
    font-weight: 500;
}

/* Efecto de animación al cargar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tournament-filter-container {
    animation: fadeIn 0.5s ease-out forwards;
}


/* Estilo general de la tarjeta de torneo */
.tournament-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Encabezado del torneo */
.tournament-header {
    background: linear-gradient(135deg, #485fc7 0%, #3a56b3 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.tournament-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.tournament-title i {
    margin-right: 12px;
    font-size: 1.2em;
    color: #ffdd57;
}

.tournament-actions {
    display: flex;
    gap: 10px;
}

/* Cuerpo del torneo */
.tournament-body {
    padding: 2rem;
    background-color: #f9f9f9;
}

/* Tarjeta de categoría */
.category-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.category-title {
    color: #4a4a4a;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.category-title i {
    margin-right: 10px;
    color: #48c774;
}

/* Tarjeta de grupo */
.group-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #f5f5f5;
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.group-content {
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.group-title {
    color: #3273dc;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.group-title i {
    margin-right: 8px;
    color: #3273dc;
    font-size: 0.9em;
}

/* Efectos y animaciones */
.button {
    transition: all 0.3s ease;
    font-weight: 500;
}

.button i {
    margin-right: 6px;
}

.is-outlined.is-primary {
    border-color: #3273dc;
    color: #3273dc;
}

.is-outlined.is-primary:hover {
    background-color: #3273dc;
    color: white;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .column.is-one-quarter {
        width: 50%;
    }
    
    .tournament-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tournament-title {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .column.is-one-quarter {
        width: 100%;
    }
    
    .tournament-body {
        padding: 1rem;
    }
    
    .category-card {
        padding: 1rem;
    }
}



.filter-button {
    /* Estilos base de Bulma */
    border: none;
    border-radius: 6px;
    padding: calc(0.5em - 1px) 1em;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Estilos personalizados avanzados */
    background: linear-gradient(135deg, #485fc7 0%, #3a56b3 100%);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(72, 95, 199, 0.3);
    padding: 0.75em 1.5em;
    margin-top: 1.5rem;
    overflow: hidden;
    
    /* Efecto de borde sutil */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-button i {
    margin-right: 10px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

/* Efecto hover */
.filter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 95, 199, 0.4);
    background: linear-gradient(135deg, #3a56b3 0%, #485fc7 100%);
}

.filter-button:hover i {
    transform: rotate(-15deg);
}

/* Efecto active */
.filter-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(72, 95, 199, 0.4);
}

/* Efecto de onda al hacer clic */
.filter-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.filter-button:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Versión responsive */
@media screen and (max-width: 768px) {
    .filter-button {
        padding: 0.65em 1.2em;
        font-size: 0.9rem;
    }
}


/* -------------------------------------------------------------------index/sesiones--------------------------------------------------*/

    /* Estilos responsivos */
    @media screen and (max-width: 768px) {
        .media.user-card {
            flex-direction: column;
        }

        .media-left, .media-content, .media-right {
            width: 100%;
            margin-right: 0 !important;
        }

        .media-right .buttons {
            justify-content: flex-start !important;
        }

        .card-footer-item {
            padding: 0.75rem;
        }

        .modal-card {
            width: 95%;
            margin: 0 auto;
        }

        /* Modales en móviles */
        .modal-card-foot {
            flex-direction: column;
            gap: 0.5rem;
        }

        .modal-card-foot .button {
            width: 100%;
        }
    }

    @media screen and (max-width: 480px) {
        .buttons .button {
            width: 100%;
            justify-content: center;
        }

        .card-content .content {
            padding: 1rem;
        }

        .user-card {
            padding: 1rem !important;
        }
    }

    /* Estilos generales */
    .section {
        background-color: transparent;
    }

    .card {
        overflow: hidden;
    }

    .user-card {
        transition: background-color 0.2s;
    }

    .user-card:hover {
        background-color: #f9f9f9;
    }

    .dark-mode .user-card:hover {
        background-color: #333333;
    }

    [data-tooltip] {
        position: relative;
    }

    [data-tooltip]::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #363636;
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        font-size: 0.875rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s, visibility 0.2s;
        z-index: 10;
    }

    [data-tooltip]:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .buttons .button {
        padding: calc(0.5em - 1px) 1em;
        white-space: nowrap;
    }

    /* Mejorar legibilidad en móviles */
    .title.is-5, .subtitle.is-6 {
        word-break: break-word;
    }

    /* Cajas de detalles en modal */
    .box {
        border-radius: 10px !important;
    }

/* -------------------------------------------------------------------edit/sesiones--------------------------------------------------*/


    .file-name {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Estilos para modo oscuro */
    body.has-dark-mode .card {
        background-color: #363636 !important;
    }
    
    body.has-dark-mode .input,
    body.has-dark-mode .select select,
    body.has-dark-mode .file-name {
        background-color: #292929 !important;
        border-color: #444 !important;
        color: #f5f5f5 !important;
    }
    
    body.has-dark-mode .label,
    body.has-dark-mode .help:not(.is-danger) {
        color: #f5f5f5 !important;
    }
    
    body.has-dark-mode .notification.is-light {
        background-color: #292929 !important;
        color: #f5f5f5 !important;
    }

/* -------------------------------------------------------------------index/torneo--------------------------------------------------*/

    
    .card-header .button {
        transition: all 0.2s ease;
        padding-left: 1em;
        padding-right: 1em;
    }
    
    .card-header .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .card-header .button:active {
        transform: translateY(0);
    }
    
    @media (max-width: 768px) {
        .card-header {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .card-header .buttons {
            margin-top: 0.75rem;
        }
        
        .card-header .button {
            width: 100%;
            margin-bottom: 0.5rem;
            justify-content: center;
        }
    }
/* -------------------------------------------------------------------index/equipos--------------------------------------------------*/

    
        .button.is-success {
            background: linear-gradient(135deg, #48c774 0%, #2aa358 100%);
            border: none;
        }
        
        .button.is-success:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(72, 199, 142, 0.4);
        }
        
        .button.is-success:active {
            transform: translateY(0);
        }
        
        .button.is-success .icon {
            margin-right: 0.5em;
        }
   
  
                            thead th {
                                position: relative;
                            }
                            
                            thead th:not(:last-child):after {
                                content: "";
                                position: absolute;
                                right: 0;
                                top: 25%;
                                height: 50%;
                                width: 1px;
                                background-color: #dbdbdb;
                            }
                            
                            @media (max-width: 768px) {
                                thead th {
                                    padding: 0.75rem 0.5rem !important;
                                    font-size: 0.85rem !important;
                                }
                                
                                .icon-text .icon {
                                    margin-right: 0.25rem !important;
                                }
                            }
    


                            /* Estilos personalizados */
                            .team-card:hover {
                                transform: translateY(-2px);
                                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
                                background-color: #f9f9f9 !important;
                            }
                            
                            .team-logo:hover {
                                transform: scale(1.1);
                                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                            }
                            
                            .buttons .button {
                                margin-right: 0.5rem;
                                transition: all 0.2s ease;
                            }
                            
                            .buttons .button:hover {
                                transform: translateY(-1px);
                                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                            }
                            
                            /* Responsive */
                            @media screen and (max-width: 768px) {
                                .table-container {
                                    overflow-x: auto;
                                }
                                
                                .level {
                                    flex-direction: column;
                                    align-items: flex-start;
                                }
                                
                                .level-left, .level-right {
                                    margin-bottom: 0.5rem;
                                }
                                
                                .card-header .title {
                                    font-size: 1.25rem !important;
                                }
                                
                                .card-header .tag {
                                    margin-top: 0.5rem;
                                }
                            }
                    
    .modal-card {
        animation: modalFadeIn 0.3s ease-out;
    }
    
    @keyframes modalFadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .button {
        transition: all 0.2s ease;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    
    .button:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .button:active {
        transform: translateY(0);
    }
    
    .button.is-danger:hover {
        background: linear-gradient(135deg, #ff3860 0%, #b00020 100%);
    }
    
    @media (max-width: 768px) {
        .modal-card {
            width: 90%;
            margin: 0 auto;
        }
        
        .modal-card-head,
        .modal-card-body,
        .modal-card-foot {
            padding: 1rem !important;
        }
    }

    /* Estilos generales */
    .team-card {
        transition: all 0.3s ease;
        background-color: white;
    }
    
    .team-card:hover {
        background-color: #f9f9f9;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    
    .team-logo {
        transition: all 0.3s ease;
    }
    
    .team-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .img-thumbnail {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 0.35em 0.65em;
    }
    
    .table th {
        font-weight: 600;
    }
    
    /* Responsividad */
    @media screen and (max-width: 768px) {
        .card-footer {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .card-footer > div {
            width: 100%;
            text-align: center !important;
        }
    }




/* -------------------------------------------------------------------form/equipos--------------------------------------------------*/



    .icon-text .icon {
        margin-right: 0.5em;
    }
    
    @media (max-width: 768px) {
        .is-flex {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .title.is-4 {
            margin-bottom: 0.75rem !important;
            font-size: 1.25rem !important;
        }
        
        .tag.is-medium {
            font-size: 0.875rem !important;
        }
    }


    .equipo-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        border-color: #e0e0e0;
    }
    
    .input:focus {
        border-color: #485fc7;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }
    
    .file-cta:hover {
        background-color: #f0f0f0 !important;
        border-color: #c5c5c5 !important;
    }
    
    @media (max-width: 768px) {
        .card-body {
            padding: 1rem !important;
        }
        
        .column.is-6 {
            padding: 0.5rem !important;
        }
        
        .file-cta {
            padding: 1em !important;
        }
    }



    .equipo-item {
        position: relative;
        transition: all 0.3s ease;
        background-color: white;
    }
    
    .equipo-item:hover {
        background-color: #f9f9f9;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    
    .file-input:focus + .file-cta {
        border-color: #485fc7;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }
    
    .select select:focus, .input:focus {
        border-color: #485fc7;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }
    
    optgroup {
        font-style: normal;
        font-weight: bold;
    }
    
    optgroup option {
        font-weight: normal;
        padding-left: 20px;
    }
    
    @media screen and (max-width: 768px) {
        .file.is-boxed .file-label {
            flex-direction: column;
        }
        
        .file.is-boxed .file-name {
            border-radius: 0 0 8px 8px !important;
            border-top: none;
        }
        
        .file.is-boxed .file-cta {
            border-radius: 8px 8px 0 0 !important;
        }
        
        .field.is-grouped {
            flex-direction: column;
        }
        
        .field.is-grouped .control {
            margin-bottom: 0.75rem;
            width: 100%;
        }
        
        .field.is-grouped .control .button {
            width: 100%;
        }
    }


/* -------------------------------------------------------------------index/partidos--------------------------------------------------*/

.card {
    transition: all 0.3s ease;
}

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

.icon-text .icon {
    margin-right: 0.5em;
}

@media (max-width: 768px) {
    .card-header {
        padding: 1rem !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .title.is-4 {
        font-size: 1.25rem !important;
    }
}


/* -------------------------------------------------------------------perfil.blade.php--------------------------------------------------*/

        .card-header .button {
            border-width: 2px;
        }
        
        .card-header .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            background-color: rgba(255,255,255,0.1) !important;
        }
        
        .card-header .button:active {
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .card-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 1.25rem;
            }
            
            .card-header .buttons {
                width: 100%;
                margin-top: 1rem !important;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .card-header .button {
                width: 100%;
                justify-content: center;
            }
        }

    

    /* ESTILOS PARA TARJETA GRANDE */
    .presentation-container {
        padding: 3rem 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .presentation-card {
        min-height: 450px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-top: 5px solid #3273dc;
        background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
        margin: 0 auto;
    }
    
    .presentation-image-container {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        margin: 0 auto;
    }
    
    .presentation-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .presentation-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        color: #7a7a7a;
    }
    
    .presentation-social {
        margin-top: 2rem;
        padding: 1.2rem;
        background-color: #f8f9fa;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    
    .presentation-details {
        padding: 2rem;
    }
    
    .presentation-detail-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1rem;
    }
    
    /* Estilos para el formulario (mantenidos igual) */
    .profile-container {
        padding: 1rem 1rem 2rem 1rem;
    }
    
    .profile-card {
        border-radius: 8px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .profile-image-container {
        margin: 0 auto;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #f5f5f5;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .profile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .profile-image-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        color: #7a7a7a;
    }
    
    .card-header-title {
        color: #363636;
    }
    
    /* Estilos responsivos */
    @media (max-width: 1024px) {
        .presentation-image-container {
            width: 200px;
            height: 200px;
        }
        
        .presentation-card {
            min-height: 400px;
        }
    }
    
    @media (max-width: 768px) {
        .presentation-card .columns {
            flex-direction: column;
        }
        
        .presentation-image-container {
            width: 180px;
            height: 180px;
            margin-bottom: 1.5rem;
        }
        
        .presentation-card {
            min-height: auto;
        }
        
        .profile-image-container {
            width: 120px;
            height: 120px;
        }
        
        .column.is-one-third {
            margin-bottom: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .presentation-image-container {
            width: 150px;
            height: 150px;
        }
        
        .presentation-details {
            padding: 1rem;
        }
    }



/* -------------------------------------------------------------------login--------------------------------------------------*/




        :root {
            --bg-color: #f5f5f5;
            --text-color: #363636;
            --title-color: #363636;
            --card-bg: #ffffff;
            --input-bg: #ffffff;
            --border-color: #dbdbdb;
            --link-color: #3273dc;
            --link-hover: #276cda;
            --help-color: #ff3860;
            --icon-color: #4a4a4a;
            --warning-color: #ffdd57;
            --warning-text: #3b3108;
        }

        .dark-mode {
            --bg-color: #121212;
            --text-color: #f5f5f5;
            --title-color: #ffffff;
            --card-bg: #1e1e1e;
            --input-bg: #2d2d2d;
            --border-color: #444;
            --link-color: #7aa8f5;
            --link-hover: #8cb5f7;
            --help-color: #ff5e7d;
            --icon-color: #e0e0e0;
            --warning-color: #947600;
            --warning-text: #f5f5f5;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        .title, .subtitle {
            color: var(--title-color) !important;
        }

        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-color);
        }

        .input, .button {
            transition: all 0.3s ease;
        }

        .input {
            background-color: var(--input-bg);
            color: var(--text-color);
            border-color: var(--border-color);
        }

        .label {
            color: var(--text-color);
        }

        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background-color: var(--card-bg);
            color: var(--text-color);
            border-color: var(--border-color);
        }

        .field .icon {
            margin-right: 10px;
            color: var(--icon-color);
        }

        .notification {
            display: flex;
            align-items: center;
            background-color: var(--card-bg);
        }

        .notification .icon {
            margin-right: 10px;
            color: var(--icon-color);
        }

        a {
            color: var(--link-color);
        }

        a:hover {
            color: var(--link-hover);
        }

        .help.is-danger {
            color: var(--help-color);
        }

        .icon {
            color: var(--icon-color);
        }

        .warning-message {
            background-color: var(--warning-color);
            color: var(--warning-text);
            padding: 1rem;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
/* -------------------------------------------------------------------lyounts/base.blade.php--------------------------------------------------*/


/* Asegurar legibilidad del contenido */


/* Ajustes para modo oscuro */
body.modo-dark .section-with-fixed-nav {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

/* Mejorar visibilidad del navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.modo-dark .navbar {
    background-color: rgba(0, 0, 0, 0.85);
}
.torneo-card {
    transition: all 0.3s ease;
    border-left: 4px solid #3273dc;
}
.torneo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.modo-dark .torneo-card {
    background-color: #1e1e1e;
    border-left-color: #00d1b2;
}


/* -------------------------------------------------------------------lyounts/filtro.blade.php--------------------------------------------------*/


    .select select {
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        border: 1px solid #dbdbdb;
    }
    
    .select select:focus {
        border-color: #485fc7;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }
    
    .select:not(.is-multiple):not(.is-loading)::after {
        border-color: #485fc7;
        right: 1.125em;
        margin-top: -0.375em;
    }
    
    @media (max-width: 768px) {
        .title.is-4 {
            font-size: 1.25rem !important;
        }
        
        .select select {
            font-size: 0.9rem;
            padding-left: 2em;
        }
    }
    
    .select select, .input {
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        border: 1px solid #dbdbdb;
    }
    
    .select select:focus, .input:focus {
        border-color: #000000;
        box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
    }
    
    .select:not(.is-multiple):not(.is-loading)::after {
        border-color: #000000;
        right: 1.125em;
        margin-top: -0.375em;
    }
    
    @media (max-width: 768px) {
        .title.is-4 {
            font-size: 1.25rem !important;
        }
        
        .select select, .input {
            font-size: 0.9rem;
            padding-left: 2em;
        }
    }


    
    .filter-button {
        background: linear-gradient(135deg, #00d1b2 0%, #009e7f 100%);
        border: none;
    }
    
    .filter-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .filter-button:active {
        transform: translateY(0);
    }
    
    .filter-button .icon {
        margin-right: 0.5em;
    }



/* -------------------------------------------------------------------categoria/index.blade.php--------------------------------------------------*/

    .categoria-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .categoria-edit-btn:hover {
        background-color: #3273dc !important;
    }
    .categoria-delete-btn:hover {
        background-color: #ff3860 !important;
    }

     /* -------------------------------------------------------------------------------Estilo para el botón de descarga -----------------------------------------------------*/
     #download-app-btn {
        margin: 20px 0;
        transition: transform 0.2s;
    }

    #download-app-btn:hover {
        transform: scale(1.05);
    }

        /* Estilo para el modal */
    .modal-card {
        max-width: 400px;
        width: 90%;
    }

    /* Estilo para el pie del modal */
    .modal-card-foot {
        justify-content: flex-end;
    }

    /* Correcciones para el navbar */
    .navbar-menu {
        box-shadow: none !important;
    }

    @media screen and (max-width: 1023px) {
        .navbar-menu {
            background-color: white;
            padding: 0.5rem 0;
        }
        
        .navbar-item-horizontal {
            margin: 0.25rem 0;
            width: 100%;
        }
    }

    /* -------------------------------------------------------------------- para el footer----------------------------------------------------*/
    footer.footer {
        background-color: #000000 !important;
    }
    
    footer.footer .content p {
        color: white !important;
    }
    
    footer.footer .content strong {
        color: white !important;
    }