body {
      display: flex;
      margin: 0;
      height: 100vh;
      font-family: 'Press Start 2P', cursive;
    }
    #resultado, .dado, #botonLanzar,#botonModificador {
  font-family: 'Press Start 2P', cursive;
  }

    .sidebar {
      width: 150px;
      background: #040f8c;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 20px;
    }

    .sidebar img {
      width: 30px;
      height: auto;
      margin-right: 10px;
    }

    .dado {
      background: #2facd5;
      border: none;
      color: white;
      padding: 10px 20px;
      margin: 10px;
      font-size: 18px;
      width: 140px;
      height: 60px;
      cursor: pointer;
      border-radius: 6px;
      transition: background 0.3s;
    }

    .dado:hover {
      background: #70c2ef;
    }

    .main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background: #f0f0f0;
      padding: 20px;
    }
    #dadoactual {
      font-size: 40px;
      margin-bottom: 20px;
    }
    #resultado {
      font-size: 32px;
      margin-bottom: 20px;
    }

    #botonLanzar {
      padding: 10px 20px;
      font-size: 18px;
      cursor: pointer;
      border: none;
      border-radius: 6px;
      background-color: #007bff;
      color: white;
      margin-bottom: 10px;
    }

    #botonLanzar:hover {
      background-color: #0056b3;
    }

    #modificadorContainer {
      display: none;
      margin-bottom: 20px;
    }

    #historial {
      background: white;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 0 5px #ccc;
      width: 100%;
      max-width: 400px;
    }

    #historial ul {
      list-style: none;
      padding: 0;
      max-height: 200px;
      overflow-y: auto;
    }
    #modificadorContainer {
  display: none;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
}
#modificadorContainer input,
#modificadorContainer select {
  padding: 8px;
  font-size: 16px;
  margin-top: 10px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ccc;
}
#botonModificador {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #666;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

#botonModificador:hover {
  background-color: #218838;
}
