body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e9ecef;
}

/* Card centrada */
.contenedor {
    width: 360px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Imagen circular */
img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top; /* probá también center, 30% 20%, etc */
}
/* Nombre */
h2 {
    margin: 10px 0;
}

/* Texto materias */
p {
    margin: 5px 0 15px;
    color: #555;
}

/* Subtítulo */
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Lista */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

/* Items */
li {
    background-color: #f8f9fa;
    margin: 5px 0;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover */
li:hover {
    background-color: #00bfff; /* celeste */
    color: white;
    font-weight: bold; /* ← esto agrega el bold */
    cursor: pointer;
}
/* Scroll prolijo */
ul::-webkit-scrollbar {
    width: 6px;
}

ul::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 5px;
}