.irm-container-510e69f8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
}

.irm-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.irm-menu-item {
    font-size: 3rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.irm-menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 4px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.irm-menu-item:hover::after {
    width: 100%;
}
