/* Estilos para imágenes - Dimensiones 25x25 */
img {
    width: 25px;
    height: 25px;
    padding: 0;
    margin: 0;
    object-fit: cover; /* Mantiene la proporción de la imagen */
}

/* Clases específicas para diferentes tipos de imágenes */
.avatar-img {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    object-fit: cover;
}

.icon-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.profile-img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

/* Para contenedores de imágenes */
.img-container {
    width: 25px;
    height: 25px;
    display: inline-block;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}