body {
  background: #8ab3d1;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

.container-puntajes {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - var(--navbar-height, 0px));
  padding: 20px;
  box-sizing: border-box;
}

.puntajes-box {
  background: #eaf3fa;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}

.logo-puntajes {
  width: 100px;
  margin-bottom: 12px;
}

.puntajes-box h2 {
  color: #2e6da4;
  margin: 0 0 18px 0;
  text-align: center;
}

.tabla-puntajes {
  width: 100%;
  margin-bottom: 20px;
  max-height: 360px;
  overflow-y: auto;
}

.tabla-puntajes table {
  width: 100%;
  border-collapse: collapse;
}

.tabla-puntajes th,
.tabla-puntajes td {
  padding: 8px 12px;
  font-size: 15px;
  color: #2e6da4;
  text-align: left;
}

.tabla-puntajes th {
  font-weight: bold;
  border-bottom: 2px solid #b0cbe6;
  background: #eaf3fa;
  position: sticky;
  top: 0;
}

.tabla-puntajes tr:not(:last-child) td {
  border-bottom: 1px solid #d2e3f3;
}

.tabla-puntajes .puesto {
  width: 48px;
  text-align: center;
  font-weight: bold;
}

.tabla-puntajes .puntaje-valor {
  text-align: right;
  font-weight: bold;
}

.fila-actual td {
  background: #fff8d6;
  color: #8a6d00;
}

.vacio-puntajes {
  text-align: center;
  color: #888;
  font-style: italic;
  padding: 24px 12px;
}

.btn-puntajes {
  background: #ffe14b;
  color: #444;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-puntajes:hover {
  background: #ffd600;
  color: #222;
}

@media (max-width: 1000px) {
  .puntajes-box {
    padding: 20px 14px;
  }
  .tabla-puntajes th,
  .tabla-puntajes td {
    padding: 6px 8px;
    font-size: 13px;
  }
  .tabla-puntajes .puesto {
    width: 32px;
  }
  .btn-puntajes {
    min-height: 44px;
    font-size: 14px;
    padding: 10px 20px;
  }
  .logo-puntajes {
    width: 12rem;
    margin-top: 1rem;
  }
  .puntajes-box h2 {
    font-size: 1.1rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn-puntajes {
    min-height: 44px;
  }
}
