.seccion-vista {
    width: 100%;
    height: 100vh;
    background-color: #e0f7fa; /* un color aqua suave */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* permite scroll si hay muchos botones */
    padding: 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.header-sele2 {
      width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.titulo-sele2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.div-botones {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1200px; /* ancho máximo */
}

.div-botones button {
    width: 100%;
    height: 10rem;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #4dd0e1, #00838f);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.div-botones button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #26c6da, #006064);
}

.acciones-usuario {
    margin: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.boton-editar {
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.boton-eliminar {
    background-color: #f44336;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.boton-cerrar-sesion {
    background-color: #666;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
