@media only screen and (max-width: 480px) and (min-width: 320px)  {
    .modal-header {
        font-size: 2rem !important;
    }

    .modal-body {
        display: grid !important;
        grid-auto-flow: dense !important;
        gap: 15px !important;
        padding: 1rem !important;
    }

    #dificultadBtn button,
    #otherBtn button {
        font-size: 1.5rem;
        height: 50px !important;
    }

    #tablaPuntuaciones {
        font-size: 1.2rem !important;
    }
}

body {
    background: #ffffff;
}

.modal-header {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.modal-score-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tabla {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.btn.cancel {
    background: #ccc;
}

.btn:hover {
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 480px) {
    .modal {
        width: 95%;
        padding: 15px;
    }

    .modal-header {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
    }

    #nombreJugador,
    #correoJugador {
        width: 90% !important;
    }

    .dt-container {
        position: relative;
        clear: both;
        width: 90%;
    }
 
    .dt-layout-cell.dt-layout-full {
        overflow-x: auto;
    }
}